diff --git a/frameworks/helidon-production/README.md b/frameworks/helidon-production/README.md
index a8dac0277..ae433c344 100644
--- a/frameworks/helidon-production/README.md
+++ b/frameworks/helidon-production/README.md
@@ -23,6 +23,8 @@ The current subscribed benchmark profiles are:
- `static-h2`
- `unary-grpc`
- `unary-grpc-tls`
+- `stream-grpc`
+- `stream-grpc-tls`
- `echo-ws`
Profiles not currently supported here:
@@ -34,9 +36,9 @@ Profiles not currently supported here:
The benchmark wiring is split by listener:
-- `8080` (`default`): HTTP/1.1 endpoints, cleartext gRPC, and WebSocket
+- `8080` (`default`): HTTP/1.1 endpoints, cleartext gRPC for `unary-grpc` and `stream-grpc`, and WebSocket
- `8081` (`h1-tls`): HTTP/1.1 + TLS for `json-tls`
-- `8443` (`h2-tls`): HTTP/2 + TLS for `baseline-h2`, `static-h2`, and TLS gRPC
+- `8443` (`h2-tls`): HTTP/2 + TLS for `baseline-h2`, `static-h2`, `unary-grpc-tls`, and `stream-grpc-tls`
Static content and TLS are configured from `application.yaml`, not
programmatically.
diff --git a/frameworks/helidon-production/meta.json b/frameworks/helidon-production/meta.json
index 176bccd85..587d9548e 100644
--- a/frameworks/helidon-production/meta.json
+++ b/frameworks/helidon-production/meta.json
@@ -20,6 +20,8 @@
"echo-ws",
"unary-grpc",
"unary-grpc-tls",
+ "stream-grpc",
+ "stream-grpc-tls",
"async-db",
"api-4",
"api-16"
diff --git a/frameworks/helidon-production/pom.xml b/frameworks/helidon-production/pom.xml
index 3df92e2d4..b69823d5b 100644
--- a/frameworks/helidon-production/pom.xml
+++ b/frameworks/helidon-production/pom.xml
@@ -95,6 +95,11 @@
slf4j-jdk14
runtime
+
+ org.junit.jupiter
+ junit-jupiter
+ test
+
diff --git a/frameworks/helidon-production/src/main/java/com/httparena/BenchmarkGrpcService.java b/frameworks/helidon-production/src/main/java/com/httparena/BenchmarkGrpcService.java
index da314c058..6ba08b9b4 100644
--- a/frameworks/helidon-production/src/main/java/com/httparena/BenchmarkGrpcService.java
+++ b/frameworks/helidon-production/src/main/java/com/httparena/BenchmarkGrpcService.java
@@ -1,5 +1,7 @@
package com.httparena;
+import java.io.UncheckedIOException;
+
import io.helidon.webserver.grpc.GrpcService;
import benchmark.Benchmark;
@@ -21,12 +23,31 @@ public Descriptors.FileDescriptor proto() {
@Override
public void update(Routing router) {
- router.unary("GetSum", this::getSum);
+ router.unary("GetSum", this::getSum)
+ .serverStream("StreamSum", this::streamSum);
}
- private void getSum(Benchmark.SumRequest request, StreamObserver observer) {
+ void getSum(Benchmark.SumRequest request, StreamObserver observer) {
complete(observer, Benchmark.SumReply.newBuilder()
.setResult(request.getA() + request.getB())
.build());
}
+
+ void streamSum(Benchmark.StreamRequest request, StreamObserver observer) {
+ try {
+ int sum = request.getA() + request.getB();
+ int count = Math.max(request.getCount(), 0);
+
+ for (int i = 0; i < count; i++) {
+ observer.onNext(Benchmark.SumReply.newBuilder()
+ .setResult(sum + i)
+ .build());
+ }
+
+ observer.onCompleted();
+ } catch (UncheckedIOException e) {
+ // this a connection close, we just ignore it
+ return;
+ }
+ }
}
diff --git a/frameworks/helidon-production/src/main/proto/benchmark.proto b/frameworks/helidon-production/src/main/proto/benchmark.proto
index ef6894978..1fa07ba55 100644
--- a/frameworks/helidon-production/src/main/proto/benchmark.proto
+++ b/frameworks/helidon-production/src/main/proto/benchmark.proto
@@ -7,6 +7,7 @@ package benchmark;
service BenchmarkService {
rpc GetSum (SumRequest) returns (SumReply);
+ rpc StreamSum (StreamRequest) returns (stream SumReply);
}
message SumRequest {
@@ -14,6 +15,12 @@ message SumRequest {
int32 b = 2;
}
+message StreamRequest {
+ int32 a = 1;
+ int32 b = 2;
+ int32 count = 3;
+}
+
message SumReply {
int32 result = 1;
}
diff --git a/frameworks/helidon-production/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java b/frameworks/helidon-production/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java
new file mode 100644
index 000000000..e7da8988b
--- /dev/null
+++ b/frameworks/helidon-production/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java
@@ -0,0 +1,109 @@
+package com.httparena;
+
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.util.ArrayList;
+import java.util.List;
+
+import benchmark.Benchmark;
+import io.grpc.stub.StreamObserver;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+
+class BenchmarkGrpcServiceTest {
+ @Test
+ void streamSumEmitsExactSequence() throws Exception {
+ RecordingObserver observer = new RecordingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(3)
+ .build(),
+ observer);
+
+ assertEquals(List.of(55, 56, 57), observer.results);
+ assertEquals(1, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ @Test
+ void streamSumAllowsEmptyStreamWhenCountIsZero() throws Exception {
+ RecordingObserver observer = new RecordingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(0)
+ .build(),
+ observer);
+
+ assertEquals(List.of(), observer.results);
+ assertEquals(1, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ @Test
+ void streamSumStopsQuietlyWhenClientDisconnects() throws Exception {
+ ThrowingObserver observer = new ThrowingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(3)
+ .build(),
+ observer);
+
+ assertEquals(List.of(55), observer.results);
+ assertEquals(0, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ private static final class RecordingObserver implements StreamObserver {
+ private final List results = new ArrayList<>();
+ private int completedCount;
+ private Throwable error;
+
+ @Override
+ public void onNext(Benchmark.SumReply value) {
+ results.add(value.getResult());
+ }
+
+ @Override
+ public void onError(Throwable throwable) {
+ error = throwable;
+ }
+
+ @Override
+ public void onCompleted() {
+ completedCount++;
+ }
+ }
+
+ private static final class ThrowingObserver implements StreamObserver {
+ private final List results = new ArrayList<>();
+ private int completedCount;
+ private Throwable error;
+
+ @Override
+ public void onNext(Benchmark.SumReply value) {
+ results.add(value.getResult());
+ throw new UncheckedIOException(new IOException("stream closed"));
+ }
+
+ @Override
+ public void onError(Throwable throwable) {
+ error = throwable;
+ }
+
+ @Override
+ public void onCompleted() {
+ completedCount++;
+ }
+ }
+}
diff --git a/frameworks/helidon-tuned/Dockerfile b/frameworks/helidon-tuned/Dockerfile
new file mode 100644
index 000000000..1aed2c597
--- /dev/null
+++ b/frameworks/helidon-tuned/Dockerfile
@@ -0,0 +1,13 @@
+FROM maven:3.9-eclipse-temurin-25 AS build
+WORKDIR /app
+COPY pom.xml .
+RUN mvn dependency:go-offline -q
+COPY src ./src
+RUN mvn package -DskipTests -q
+
+FROM eclipse-temurin:25-jre
+WORKDIR /app
+COPY --from=build /app/target/helidon-httparena-tuned.jar app.jar
+COPY --from=build /app/target/libs ./libs
+EXPOSE 8080 8081 8443
+ENTRYPOINT ["java", "-jar", "app.jar"]
diff --git a/frameworks/helidon-tuned/README.md b/frameworks/helidon-tuned/README.md
new file mode 100644
index 000000000..77ad14286
--- /dev/null
+++ b/frameworks/helidon-tuned/README.md
@@ -0,0 +1,60 @@
+Helidon Tuned
+----
+
+# Project
+
+This framework runs Helidon SE 4.4.1 on Níma WebServer as a `tuned`
+benchmark entry.
+
+The current subscribed benchmark profiles are:
+
+- `baseline`
+- `pipelined`
+- `limited-conn`
+- `json`
+- `json-comp`
+- `json-tls`
+- `upload`
+- `static`
+- `async-db`
+- `api-4`
+- `api-16`
+- `baseline-h2`
+- `static-h2`
+- `unary-grpc`
+- `unary-grpc-tls`
+- `stream-grpc`
+- `stream-grpc-tls`
+- `echo-ws`
+
+Profiles not currently supported here:
+
+- HTTP/3: `baseline-h3`, `static-h3`
+- `gateway-64`
+
+# Listener layout
+
+The benchmark wiring is split by listener:
+
+- `8080` (`default`): HTTP/1.1 endpoints, cleartext gRPC for `unary-grpc` and `stream-grpc`, and WebSocket
+- `8081` (`h1-tls`): HTTP/1.1 + TLS for `json-tls`
+- `8443` (`h2-tls`): HTTP/2 + TLS for `baseline-h2`, `static-h2`, `unary-grpc-tls`, and `stream-grpc-tls`
+
+TLS is configured from `application.yaml`. Static content is served
+programmatically from `/data/static`, reading from disk on each request while
+preferring precompressed `.br` / `.gz` variants and setting
+`Vary: Accept-Encoding`.
+
+# Divergence from benchmark guidance
+
+## `async-db` uses JDBC + HikariCP
+
+The benchmark guidance for `async-db` prefers an async PostgreSQL driver.
+This Helidon entry currently uses the standard PostgreSQL JDBC driver with
+HikariCP.
+
+That means the implementation is benchmark-contract correct, but it does not
+follow the async-driver recommendation literally. This is an intentional
+tradeoff for the current Helidon/Níma tuned entry.
+
+Helidon WebServer is designed for Java Virtual Threads and optimized for blocking operations.
diff --git a/frameworks/helidon-tuned/meta.json b/frameworks/helidon-tuned/meta.json
new file mode 100644
index 000000000..c7c9c7296
--- /dev/null
+++ b/frameworks/helidon-tuned/meta.json
@@ -0,0 +1,32 @@
+{
+ "display_name": "helidon-tuned",
+ "language": "Java",
+ "type": "tuned",
+ "engine": "níma",
+ "description": "Helidon SE 4.4.1 on Níma WebServer with Java 25, tuned socket options, precompressed static content, HTTP/2, gRPC, and WebSocket support.",
+ "repo": "https://github.com/helidon-io/helidon",
+ "enabled": true,
+ "tests": [
+ "baseline",
+ "pipelined",
+ "limited-conn",
+ "json",
+ "json-comp",
+ "json-tls",
+ "upload",
+ "static",
+ "baseline-h2",
+ "static-h2",
+ "echo-ws",
+ "unary-grpc",
+ "unary-grpc-tls",
+ "stream-grpc",
+ "stream-grpc-tls",
+ "async-db",
+ "api-4",
+ "api-16"
+ ],
+ "maintainers": [
+ "tomas-langer"
+ ]
+}
diff --git a/frameworks/helidon-tuned/pom.xml b/frameworks/helidon-tuned/pom.xml
new file mode 100644
index 000000000..65a94d30d
--- /dev/null
+++ b/frameworks/helidon-tuned/pom.xml
@@ -0,0 +1,145 @@
+
+
+ 4.0.0
+
+ io.helidon.applications
+ helidon-se
+ 4.4.1
+
+
+ com.httparena
+ helidon-httparena-tuned
+ 1.0.0
+ HttpArena Helidon SE Tuned
+
+
+ com.httparena.Main
+ 3.47.2.0
+
+
+
+
+ io.grpc
+ grpc-api
+
+
+ io.helidon.grpc
+ helidon-grpc-core
+
+
+ io.helidon.webserver
+ helidon-webserver
+
+
+ io.helidon.webserver
+ helidon-webserver-http2
+
+
+ io.helidon.webserver
+ helidon-webserver-grpc
+
+
+ io.helidon.webserver
+ helidon-webserver-websocket
+
+
+ io.helidon.config
+ helidon-config-yaml
+
+
+ io.helidon.json
+ helidon-json
+
+
+ io.helidon.json
+ helidon-json-binding
+
+
+ com.google.protobuf
+ protobuf-java
+
+
+ io.helidon.http.media
+ helidon-http-media-json-binding
+
+
+ com.zaxxer
+ HikariCP
+
+
+ org.postgresql
+ postgresql
+
+
+ org.xerial
+ sqlite-jdbc
+ ${version.lib.sqllite}
+
+
+ io.helidon.logging
+ helidon-logging-jul
+ runtime
+
+
+ org.slf4j
+ slf4j-jdk14
+ runtime
+
+
+ org.junit.jupiter
+ junit-jupiter
+ test
+
+
+
+
+
+
+ kr.motd.maven
+ os-maven-plugin
+ ${version.plugin.os}
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+
+
+ io.helidon.bundles
+ helidon-bundles-apt
+ ${helidon.version}
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-dependency-plugin
+
+
+ copy-libs
+
+
+
+
+ org.xolstice.maven.plugins
+ protobuf-maven-plugin
+ 0.6.1
+
+
+
+ compile
+
+
+
+
+ com.google.protobuf:protoc:${version.lib.google-protobuf}:exe:${os.detected.classifier}
+
+
+
+
+
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java
new file mode 100644
index 000000000..5f5aa1aaa
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java
@@ -0,0 +1,25 @@
+package com.httparena;
+
+import java.nio.charset.StandardCharsets;
+
+import io.helidon.common.uri.UriQuery;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN;
+
+class BaselineHandler implements Handler {
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_TEXT_PLAIN);
+
+ UriQuery query = req.query();
+ int first = Integer.parseInt(query.getRaw("a"));
+ int second = Integer.parseInt(query.getRaw("b"));
+
+ res.send(String.valueOf(first + second).getBytes(StandardCharsets.US_ASCII));
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java
new file mode 100644
index 000000000..5c23ffc7a
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java
@@ -0,0 +1,27 @@
+package com.httparena;
+
+import java.nio.charset.StandardCharsets;
+
+import io.helidon.common.GenericType;
+import io.helidon.common.uri.UriQuery;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN;
+
+class BaselinePostHandler implements Handler {
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_TEXT_PLAIN);
+
+ UriQuery query = req.query();
+ int first = Integer.parseInt(query.getRaw("a"));
+ int second = Integer.parseInt(query.getRaw("b"));
+ int third = Integer.parseInt(req.content().as(GenericType.STRING));
+
+ res.send(String.valueOf(first + second + third).getBytes(StandardCharsets.US_ASCII));
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/BenchmarkGrpcService.java b/frameworks/helidon-tuned/src/main/java/com/httparena/BenchmarkGrpcService.java
new file mode 100644
index 000000000..6ba08b9b4
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/BenchmarkGrpcService.java
@@ -0,0 +1,53 @@
+package com.httparena;
+
+import java.io.UncheckedIOException;
+
+import io.helidon.webserver.grpc.GrpcService;
+
+import benchmark.Benchmark;
+import com.google.protobuf.Descriptors;
+import io.grpc.stub.StreamObserver;
+
+import static io.helidon.grpc.core.ResponseHelper.complete;
+
+final class BenchmarkGrpcService implements GrpcService {
+ @Override
+ public String serviceName() {
+ return "BenchmarkService";
+ }
+
+ @Override
+ public Descriptors.FileDescriptor proto() {
+ return Benchmark.getDescriptor();
+ }
+
+ @Override
+ public void update(Routing router) {
+ router.unary("GetSum", this::getSum)
+ .serverStream("StreamSum", this::streamSum);
+ }
+
+ void getSum(Benchmark.SumRequest request, StreamObserver observer) {
+ complete(observer, Benchmark.SumReply.newBuilder()
+ .setResult(request.getA() + request.getB())
+ .build());
+ }
+
+ void streamSum(Benchmark.StreamRequest request, StreamObserver observer) {
+ try {
+ int sum = request.getA() + request.getB();
+ int count = Math.max(request.getCount(), 0);
+
+ for (int i = 0; i < count; i++) {
+ observer.onNext(Benchmark.SumReply.newBuilder()
+ .setResult(sum + i)
+ .build());
+ }
+
+ observer.onCompleted();
+ } catch (UncheckedIOException e) {
+ // this a connection close, we just ignore it
+ return;
+ }
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java
new file mode 100644
index 000000000..94e7bc7f6
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java
@@ -0,0 +1,199 @@
+package com.httparena;
+
+import java.net.URI;
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.locks.ReentrantReadWriteLock;
+
+import io.helidon.common.uri.UriQuery;
+import io.helidon.http.Status;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import com.zaxxer.hikari.HikariConfig;
+import com.zaxxer.hikari.HikariDataSource;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON;
+
+class DbHandler implements Handler {
+ private static final Items EMPTY_ITEMS_RESPONSE = new Items(List.of(), 0);
+ private static final String DB_QUERY =
+ "SELECT id, name, category, price, quantity, active, tags, rating_score, rating_count "
+ + "FROM items "
+ + "WHERE price "
+ + "BETWEEN ? AND ? "
+ + "LIMIT ?";
+
+ private final ReentrantReadWriteLock databaseLock = new ReentrantReadWriteLock();
+ private final boolean databaseConfigured;
+ private final String dbUrl;
+
+ private HikariDataSource database;
+
+ DbHandler() {
+ this.dbUrl = System.getenv("DATABASE_URL");
+ databaseConfigured = dbUrl != null && !dbUrl.isEmpty();
+
+ if (databaseConfigured) {
+ this.database = initializeDatabase(dbUrl);
+ }
+ }
+
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+
+ if (!databaseConfigured) {
+ // if not configured, fail (maybe local invocation, or manual command line invocation)
+ res.status(Status.INTERNAL_SERVER_ERROR_500)
+ .send();
+ return;
+ }
+
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_JSON);
+
+ HikariDataSource dataSource = database();
+ if (dataSource == null) {
+ res.send(EMPTY_ITEMS_RESPONSE);
+ return;
+ }
+
+ try {
+ res.send(queryItems(req, dataSource));
+ } catch (SQLException ignored) {
+ resetDatabase(dataSource);
+ res.send(EMPTY_ITEMS_RESPONSE);
+ }
+ }
+
+ private static HikariDataSource initializeDatabase(String dbUrl) {
+ int maxConnections = Integer.parseInt(System.getenv().getOrDefault("DATABASE_MAX_CONN", "64"));
+ int minimumIdle = 10 <= maxConnections ? 10 : 1;
+
+ // PostgreSQL connection pool
+ try {
+ URI uri = new URI(dbUrl.replace("postgres://", "postgresql://"));
+ String host = uri.getHost();
+ int port = uri.getPort() > 0 ? uri.getPort() : 5432;
+ String database = uri.getPath().substring(1);
+ String[] userInfo = uri.getUserInfo().split(":");
+ HikariConfig config = new HikariConfig();
+ config.setDriverClassName("org.postgresql.Driver");
+ config.setJdbcUrl("jdbc:postgresql://" + host + ":" + port + "/" + database);
+ config.setUsername(userInfo[0]);
+ config.setPassword(userInfo.length > 1 ? userInfo[1] : "");
+ config.setMaximumPoolSize(maxConnections);
+ config.setMinimumIdle(minimumIdle);
+ config.setReadOnly(true);
+ return new HikariDataSource(config);
+ } catch (Exception e) {
+ return null;
+ }
+ }
+
+ private Items queryItems(ServerRequest req, HikariDataSource dataSource) throws SQLException {
+ try (Connection conn = dataSource.getConnection()) {
+ UriQuery query = req.query();
+
+ int min = query.first("min").map(Integer::parseInt).orElse(10);
+ int max = query.first("max").map(Integer::parseInt).orElse(50);
+ int limit = Math.min(Math.max(query.first("limit").map(Integer::parseInt).orElse(50), 1), 50);
+
+ List- items = new ArrayList<>(limit);
+
+ try (PreparedStatement stmt = conn.prepareStatement(DB_QUERY)) {
+ stmt.setInt(1, min);
+ stmt.setInt(2, max);
+ stmt.setInt(3, limit);
+
+ try (ResultSet rs = stmt.executeQuery()) {
+
+ while (rs.next()) {
+ items.add(new Item(rs.getLong("id"),
+ rs.getString("name"),
+ rs.getString("category"),
+ rs.getInt("price"),
+ rs.getInt("quantity"),
+ rs.getBoolean("active"),
+ parseTags(rs.getString("tags")),
+ new Rating(rs.getInt("rating_score"),
+ rs.getInt("rating_count"))));
+ }
+ }
+ }
+
+ return new Items(items, items.size());
+ }
+ }
+
+ private List parseTags(String rawTags) {
+ if (rawTags == null || rawTags.isBlank()) {
+ return List.of();
+ }
+
+ String trimmed = rawTags.trim();
+ if (trimmed.startsWith("[") && trimmed.endsWith("]")) {
+ List tags = new ArrayList<>();
+ String body = trimmed.substring(1, trimmed.length() - 1).trim();
+ if (body.isEmpty()) {
+ return tags;
+ }
+
+ for (String token : body.split(",")) {
+ String tag = token.trim();
+ if (tag.length() >= 2 && tag.startsWith("\"") && tag.endsWith("\"")) {
+ tag = tag.substring(1, tag.length() - 1);
+ }
+ tags.add(tag);
+ }
+ return tags;
+ }
+
+ List tags = new ArrayList<>();
+ for (String tag : trimmed.split(",")) {
+ tags.add(tag.trim());
+ }
+ return tags;
+ }
+
+ private HikariDataSource database() {
+ databaseLock.readLock().lock();
+ try {
+ HikariDataSource existing = database;
+ if (existing != null) {
+ return existing;
+ }
+ } finally {
+ databaseLock.readLock().unlock();
+ }
+
+ databaseLock.writeLock().lock();
+ try {
+ if (database == null) {
+ database = initializeDatabase(dbUrl);
+ }
+ return database;
+ } finally {
+ databaseLock.writeLock().unlock();
+ }
+ }
+
+ private void resetDatabase(HikariDataSource failedDataSource) {
+ databaseLock.writeLock().lock();
+ try {
+ if (database == failedDataSource) {
+ database = null;
+ }
+ } finally {
+ databaseLock.writeLock().unlock();
+ }
+ failedDataSource.close();
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/EchoWsListener.java b/frameworks/helidon-tuned/src/main/java/com/httparena/EchoWsListener.java
new file mode 100644
index 000000000..481833b18
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/EchoWsListener.java
@@ -0,0 +1,22 @@
+package com.httparena;
+
+import io.helidon.common.buffers.BufferData;
+import io.helidon.websocket.WsListener;
+import io.helidon.websocket.WsSession;
+
+final class EchoWsListener implements WsListener {
+ @Override
+ public void onMessage(WsSession session, String text, boolean last) {
+ session.send(text, last);
+ }
+
+ @Override
+ public void onMessage(WsSession session, BufferData buffer, boolean last) {
+ session.send(buffer, last);
+ }
+
+ @Override
+ public void onPing(WsSession session, BufferData buffer) {
+ session.pong(buffer);
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/Item.java b/frameworks/helidon-tuned/src/main/java/com/httparena/Item.java
new file mode 100644
index 000000000..559efb5a6
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/Item.java
@@ -0,0 +1,16 @@
+package com.httparena;
+
+import java.util.List;
+
+import io.helidon.json.binding.Json;
+
+@Json.Entity
+record Item(long id,
+ String name,
+ String category,
+ int price,
+ int quantity,
+ boolean active,
+ List tags,
+ Rating rating) {
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/Items.java b/frameworks/helidon-tuned/src/main/java/com/httparena/Items.java
new file mode 100644
index 000000000..690bb3c2e
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/Items.java
@@ -0,0 +1,9 @@
+package com.httparena;
+
+import java.util.List;
+
+import io.helidon.json.binding.Json;
+
+@Json.Entity
+record Items(List
- items, long count) {
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java
new file mode 100644
index 000000000..06ed1d41b
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java
@@ -0,0 +1,93 @@
+package com.httparena;
+
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.io.ByteArrayOutputStream;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.List;
+import java.util.Locale;
+import java.util.zip.GZIPOutputStream;
+
+import io.helidon.common.GenericType;
+import io.helidon.http.Header;
+import io.helidon.http.HeaderNames;
+import io.helidon.http.HeaderValues;
+import io.helidon.json.binding.JsonBinding;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON;
+
+class JsonHandler implements Handler {
+ private static final JsonBinding JSON_BINDING = JsonBinding.create();
+ private static final Header VARY_ACCEPT_ENCODING =
+ HeaderValues.createCached(HeaderNames.VARY, HeaderNames.ACCEPT_ENCODING_NAME);
+ private static final Header CONTENT_ENCODING_GZIP =
+ HeaderValues.createCached(HeaderNames.CONTENT_ENCODING, "gzip");
+
+ private final List
- jsonDataset;
+
+ JsonHandler(String dataLocation) throws IOException {
+ this.jsonDataset = loadJsonDataset(dataLocation);
+ }
+
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_JSON);
+
+ int requestedCount = req.path().pathParameters().first("count")
+ .asInt()
+ .orElse(jsonDataset.size());
+ int multiplier = req.query().first("m")
+ .map(Integer::parseInt)
+ .orElse(1);
+ int count = Math.min(Math.max(requestedCount, 0), jsonDataset.size());
+
+ List totalItems = jsonDataset.subList(0, count).stream()
+ .map(item -> TotalItem.create(item, multiplier))
+ .toList();
+ byte[] responseBody = JSON_BINDING.serializeToBytes(new TotalItems(totalItems, totalItems.size()));
+ String acceptEncoding = req.headers()
+ .first(HeaderNames.ACCEPT_ENCODING)
+ .orElse("")
+ .toLowerCase(Locale.ROOT);
+ res.header(VARY_ACCEPT_ENCODING);
+ if (acceptEncoding.contains("gzip")) {
+ res.header(CONTENT_ENCODING_GZIP);
+ res.send(gzip(responseBody));
+ return;
+ }
+ res.send(responseBody);
+ }
+
+ private static List
- loadJsonDataset(String dataLocation) throws IOException {
+ // Dataset
+ String path = System.getenv("DATASET_PATH");
+ if (path == null) {
+ path = dataLocation + "/dataset.json";
+ }
+ Path datasetPath = Paths.get(path);
+ if (!Files.exists(datasetPath)) {
+ throw new IllegalArgumentException("Failed to load JSON dataset from: " + datasetPath.toAbsolutePath().normalize());
+ }
+
+ return JSON_BINDING.deserialize(Files.readAllBytes(datasetPath), new GenericType
>() { });
+ }
+
+ private static byte[] gzip(byte[] bytes) {
+ try {
+ ByteArrayOutputStream baos = new ByteArrayOutputStream(bytes.length);
+ try (GZIPOutputStream gzip = new GZIPOutputStream(baos)) {
+ gzip.write(bytes);
+ }
+ return baos.toByteArray();
+ } catch (IOException e) {
+ throw new UncheckedIOException("Failed to gzip JSON response", e);
+ }
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java b/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java
new file mode 100644
index 000000000..1486ddff1
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java
@@ -0,0 +1,88 @@
+package com.httparena;
+
+import io.helidon.config.Config;
+import io.helidon.http.Header;
+import io.helidon.http.HeaderNames;
+import io.helidon.http.HeaderValues;
+import io.helidon.logging.common.LogConfig;
+import io.helidon.webserver.WebServer;
+import io.helidon.webserver.grpc.GrpcRouting;
+import io.helidon.webserver.websocket.WsRouting;
+
+public final class Main {
+ static final Header SERVER_HEADER = HeaderValues.createCached(HeaderNames.SERVER, "helidon");
+
+ static {
+ LogConfig.initClass();
+ }
+
+ private Main() {
+ }
+
+ public static void main(String[] args) throws Exception {
+ LogConfig.configureRuntime();
+
+ Config config = Config.create();
+ Config serverConfig = config.get("server");
+ String dataLocation = config.get("data.dir").asString().orElse("/data");
+
+ BenchmarkGrpcService grpcService = new BenchmarkGrpcService();
+ var builder = WebServer.builder()
+ .config(serverConfig);
+
+ JsonHandler jsonHandler = new JsonHandler(dataLocation);
+ BaselineHandler baselineHandler = new BaselineHandler();
+ StaticHandler staticHandler = new StaticHandler(dataLocation);
+
+ // default listener routing
+ builder.routing(httpRouting -> httpRouting
+ .get("/pipeline", new PipelineHandler())
+ .get("/baseline11", baselineHandler)
+ .get("/json/{count}", jsonHandler)
+ .get("/json", jsonHandler)
+ .get("/static/{filename}", staticHandler)
+ .post("/baseline11", new BaselinePostHandler())
+ .post("/upload", new UploadHandler())
+ .get("/async-db", new DbHandler()))
+ .addRouting(GrpcRouting.builder().service(grpcService))
+ .addRouting(WsRouting.builder().endpoint("/ws", new EchoWsListener()));
+
+ // h2-tls routing - baseline2, static content, GRPC
+ var h2TlsListener = builder.sockets().get("h2-tls");
+ if (h2TlsListener != null) {
+ builder.putSocket("h2-tls", socket -> socket
+ .from(h2TlsListener)
+ .routing(routing -> routing
+ .get("/baseline2", baselineHandler)
+ .get("/static/{filename}", staticHandler))
+ .addRouting(GrpcRouting.builder().service(grpcService)));
+ }
+
+ // h1-tls routing - json-tls only
+ var h1TlsListener = builder.sockets().get("h1-tls");
+ if (h1TlsListener != null) {
+ builder.putSocket("h1-tls", socket -> socket
+ .from(h1TlsListener)
+ .routing(routing -> routing
+ .get("/json/{count}", jsonHandler)
+ .get("/json", jsonHandler)));
+ }
+
+ WebServer server = builder.build().start();
+
+ int defaultPort = server.port();
+ int h2TlsPort = server.port("h2-tls");
+ int h1TlsPort = server.port("h1-tls");
+
+ if (defaultPort == -1 || h2TlsPort == -1 || h1TlsPort == -1) {
+ server.stop();
+ System.err.println("Helidon HttpArena server failed to start");
+ System.exit(-1);
+ }
+
+ System.out.println("Helidon HttpArena server started on ports: "
+ + "\nplain (" + server.port() + ")"
+ + "\nhttps (" + server.port("h2-tls") + ")"
+ + "\nh1tls (" + server.port("h1-tls") + ")");
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java
new file mode 100644
index 000000000..f8a32cdd3
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java
@@ -0,0 +1,26 @@
+package com.httparena;
+
+import java.nio.charset.StandardCharsets;
+
+import io.helidon.http.Header;
+import io.helidon.http.HeaderNames;
+import io.helidon.http.HeaderValues;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN;
+
+class PipelineHandler implements Handler {
+ private static final byte[] RESPONSE = "ok".getBytes(StandardCharsets.US_ASCII);
+ private static final Header CONTENT_LENGTH = HeaderValues.createCached(HeaderNames.CONTENT_LENGTH, "2");
+
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_TEXT_PLAIN);
+ res.header(CONTENT_LENGTH);
+ res.send(RESPONSE);
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/Rating.java b/frameworks/helidon-tuned/src/main/java/com/httparena/Rating.java
new file mode 100644
index 000000000..fb4ba1dda
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/Rating.java
@@ -0,0 +1,7 @@
+package com.httparena;
+
+import io.helidon.json.binding.Json;
+
+@Json.Entity
+record Rating(int score, long count) {
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java
new file mode 100644
index 000000000..2b2665486
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java
@@ -0,0 +1,115 @@
+package com.httparena;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.Locale;
+import java.util.Map;
+
+import io.helidon.http.Header;
+import io.helidon.http.HeaderNames;
+import io.helidon.http.HeaderValues;
+import io.helidon.http.Status;
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+
+class StaticHandler implements Handler {
+ private static final Header VARY_ACCEPT_ENCODING =
+ HeaderValues.createCached(HeaderNames.VARY, HeaderNames.ACCEPT_ENCODING_NAME);
+ private static final Header CONTENT_ENCODING_BR =
+ HeaderValues.createCached(HeaderNames.CONTENT_ENCODING, "br");
+ private static final Header CONTENT_ENCODING_GZIP =
+ HeaderValues.createCached(HeaderNames.CONTENT_ENCODING, "gzip");
+ private static final Header CONTENT_TYPE_OCTET_STREAM =
+ HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "application/octet-stream");
+ private static final Map CONTENT_TYPES = Map.of(
+ ".css", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "text/css"),
+ ".js", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "application/javascript"),
+ ".html", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "text/html"),
+ ".woff2", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "font/woff2"),
+ ".svg", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "image/svg+xml"),
+ ".webp", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "image/webp"),
+ ".json", HeaderValues.createCached(HeaderNames.CONTENT_TYPE, "application/json")
+ );
+
+ private final Path staticDir;
+
+ StaticHandler(String dataLocation) throws IOException {
+ this.staticDir = Path.of(dataLocation, "static").toAbsolutePath().normalize();
+ if (!Files.isDirectory(staticDir)) {
+ throw new IllegalArgumentException("Failed to load static assets from: "
+ + staticDir);
+ }
+ }
+
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ String filename = req.path().pathParameters().first("filename").orElse("");
+ Path rawPath = resolveStaticPath(filename);
+ if (rawPath == null || !Files.isRegularFile(rawPath)) {
+ res.status(Status.NOT_FOUND_404)
+ .header(SERVER_HEADER)
+ .send();
+ return;
+ }
+
+ res.header(SERVER_HEADER);
+ res.header(VARY_ACCEPT_ENCODING);
+ res.header(contentType(filename));
+
+ String acceptEncoding = req.headers()
+ .first(HeaderNames.ACCEPT_ENCODING)
+ .orElse("")
+ .toLowerCase(Locale.ROOT);
+ try {
+ if (acceptEncoding.contains("br")) {
+ Path brPath = encodedSibling(rawPath, ".br");
+ if (Files.isRegularFile(brPath)) {
+ res.header(CONTENT_ENCODING_BR);
+ res.send(Files.readAllBytes(brPath));
+ return;
+ }
+ }
+ if (acceptEncoding.contains("gzip")) {
+ Path gzPath = encodedSibling(rawPath, ".gz");
+ if (Files.isRegularFile(gzPath)) {
+ res.header(CONTENT_ENCODING_GZIP);
+ res.send(Files.readAllBytes(gzPath));
+ return;
+ }
+ }
+ res.send(Files.readAllBytes(rawPath));
+ } catch (IOException e) {
+ res.status(Status.INTERNAL_SERVER_ERROR_500)
+ .header(SERVER_HEADER)
+ .send();
+ }
+ }
+
+ private Path resolveStaticPath(String fileName) {
+ if (fileName.isEmpty()) {
+ return null;
+ }
+ Path resolved = staticDir.resolve(fileName).normalize();
+ if (!resolved.startsWith(staticDir)) {
+ return null;
+ }
+ return resolved;
+ }
+
+ private static Path encodedSibling(Path rawPath, String suffix) {
+ return rawPath.resolveSibling(rawPath.getFileName() + suffix);
+ }
+
+ private static Header contentType(String fileName) {
+ int dotIndex = fileName.lastIndexOf('.');
+ if (dotIndex < 0) {
+ return CONTENT_TYPE_OCTET_STREAM;
+ }
+ return CONTENT_TYPES.getOrDefault(fileName.substring(dotIndex), CONTENT_TYPE_OCTET_STREAM);
+ }
+
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItem.java b/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItem.java
new file mode 100644
index 000000000..60c37c7d3
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItem.java
@@ -0,0 +1,29 @@
+package com.httparena;
+
+import java.util.List;
+
+import io.helidon.json.binding.Json;
+
+@Json.Entity
+record TotalItem(long id,
+ String name,
+ String category,
+ int price,
+ int quantity,
+ boolean active,
+ List tags,
+ Rating rating,
+ long total) {
+ static TotalItem create(Item item, int multiplier) {
+ long total = (long) item.price() * item.quantity() * multiplier;
+ return new TotalItem(item.id(),
+ item.name(),
+ item.category(),
+ item.price(),
+ item.quantity(),
+ item.active(),
+ item.tags(),
+ item.rating(),
+ total);
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItems.java b/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItems.java
new file mode 100644
index 000000000..b5a68545f
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/TotalItems.java
@@ -0,0 +1,9 @@
+package com.httparena;
+
+import java.util.List;
+
+import io.helidon.json.binding.Json;
+
+@Json.Entity
+record TotalItems(List items, long count) {
+}
diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/UploadHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/UploadHandler.java
new file mode 100644
index 000000000..c7076cba4
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/java/com/httparena/UploadHandler.java
@@ -0,0 +1,28 @@
+package com.httparena;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+
+import io.helidon.webserver.http.Handler;
+import io.helidon.webserver.http.ServerRequest;
+import io.helidon.webserver.http.ServerResponse;
+
+import static com.httparena.Main.SERVER_HEADER;
+import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN;
+
+class UploadHandler implements Handler {
+ @Override
+ public void handle(ServerRequest req, ServerResponse res) {
+ res.header(SERVER_HEADER);
+ res.header(CONTENT_TYPE_TEXT_PLAIN);
+
+ try (InputStream is = req.content().inputStream()) {
+ long bodyLength = is.transferTo(OutputStream.nullOutputStream());
+ res.send(String.valueOf(bodyLength));
+ } catch (IOException ignored) {
+ // ignore client errors (i.e. disconnect), as we can only fail on IO exception here, so
+ // there is nowhere to write to
+ }
+ }
+}
diff --git a/frameworks/helidon-tuned/src/main/proto/benchmark.proto b/frameworks/helidon-tuned/src/main/proto/benchmark.proto
new file mode 100644
index 000000000..1fa07ba55
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/proto/benchmark.proto
@@ -0,0 +1,26 @@
+syntax = "proto3";
+
+option java_package = "benchmark";
+option java_outer_classname = "Benchmark";
+
+package benchmark;
+
+service BenchmarkService {
+ rpc GetSum (SumRequest) returns (SumReply);
+ rpc StreamSum (StreamRequest) returns (stream SumReply);
+}
+
+message SumRequest {
+ int32 a = 1;
+ int32 b = 2;
+}
+
+message StreamRequest {
+ int32 a = 1;
+ int32 b = 2;
+ int32 count = 3;
+}
+
+message SumReply {
+ int32 result = 1;
+}
diff --git a/frameworks/helidon-tuned/src/main/resources/application.yaml b/frameworks/helidon-tuned/src/main/resources/application.yaml
new file mode 100644
index 000000000..9c7bdea1c
--- /dev/null
+++ b/frameworks/helidon-tuned/src/main/resources/application.yaml
@@ -0,0 +1,72 @@
+data.dir: "/data"
+cert.dir: "/certs"
+
+server:
+ host: "0.0.0.0"
+ port: 8080
+ backlog: 8192
+ connection-options:
+ read-timeout: PT0S
+ connect-timeout: PT0S
+ protocols:
+ http_1_1:
+ send-keep-alive-header: false
+ validate-request-headers: false
+ validate-response-headers: false
+ validate-prologue: false
+ validate-path: false
+ recv-log: false
+ send-log: false
+ sockets:
+ - name: "h2-tls" # HTTP/2, grpc
+ host: "0.0.0.0"
+ port: 8443
+ backlog: 8192
+ connection-options:
+ read-timeout: PT0S
+ connect-timeout: PT0S
+ protocols:
+ http_1_1:
+ send-keep-alive-header: false
+ validate-request-headers: false
+ validate-response-headers: false
+ validate-prologue: false
+ validate-path: false
+ recv-log: false
+ send-log: false
+ tls:
+ private-key:
+ pem:
+ key:
+ resource:
+ path: "${cert.dir}/server.key"
+ cert-chain:
+ resource:
+ path: "${cert.dir}/server.crt"
+ - name: "h1-tls" # json-tls
+ host: "0.0.0.0"
+ port: 8081
+ backlog: 8192
+ connection-options:
+ read-timeout: PT0S
+ connect-timeout: PT0S
+ # benchmark requires http/1.1 only on this port
+ protocols-discover-services: false
+ protocols:
+ http_1_1:
+ send-keep-alive-header: false
+ validate-request-headers: false
+ validate-response-headers: false
+ validate-prologue: false
+ validate-path: false
+ recv-log: false
+ send-log: false
+ tls:
+ private-key:
+ pem:
+ key:
+ resource:
+ path: "${cert.dir}/server.key"
+ cert-chain:
+ resource:
+ path: "${cert.dir}/server.crt"
diff --git a/frameworks/helidon-tuned/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java b/frameworks/helidon-tuned/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java
new file mode 100644
index 000000000..e7da8988b
--- /dev/null
+++ b/frameworks/helidon-tuned/src/test/java/com/httparena/BenchmarkGrpcServiceTest.java
@@ -0,0 +1,109 @@
+package com.httparena;
+
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.util.ArrayList;
+import java.util.List;
+
+import benchmark.Benchmark;
+import io.grpc.stub.StreamObserver;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+
+class BenchmarkGrpcServiceTest {
+ @Test
+ void streamSumEmitsExactSequence() throws Exception {
+ RecordingObserver observer = new RecordingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(3)
+ .build(),
+ observer);
+
+ assertEquals(List.of(55, 56, 57), observer.results);
+ assertEquals(1, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ @Test
+ void streamSumAllowsEmptyStreamWhenCountIsZero() throws Exception {
+ RecordingObserver observer = new RecordingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(0)
+ .build(),
+ observer);
+
+ assertEquals(List.of(), observer.results);
+ assertEquals(1, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ @Test
+ void streamSumStopsQuietlyWhenClientDisconnects() throws Exception {
+ ThrowingObserver observer = new ThrowingObserver();
+ BenchmarkGrpcService service = new BenchmarkGrpcService();
+
+ service.streamSum(Benchmark.StreamRequest.newBuilder()
+ .setA(13)
+ .setB(42)
+ .setCount(3)
+ .build(),
+ observer);
+
+ assertEquals(List.of(55), observer.results);
+ assertEquals(0, observer.completedCount);
+ assertNull(observer.error);
+ }
+
+ private static final class RecordingObserver implements StreamObserver {
+ private final List results = new ArrayList<>();
+ private int completedCount;
+ private Throwable error;
+
+ @Override
+ public void onNext(Benchmark.SumReply value) {
+ results.add(value.getResult());
+ }
+
+ @Override
+ public void onError(Throwable throwable) {
+ error = throwable;
+ }
+
+ @Override
+ public void onCompleted() {
+ completedCount++;
+ }
+ }
+
+ private static final class ThrowingObserver implements StreamObserver {
+ private final List results = new ArrayList<>();
+ private int completedCount;
+ private Throwable error;
+
+ @Override
+ public void onNext(Benchmark.SumReply value) {
+ results.add(value.getResult());
+ throw new UncheckedIOException(new IOException("stream closed"));
+ }
+
+ @Override
+ public void onError(Throwable throwable) {
+ error = throwable;
+ }
+
+ @Override
+ public void onCompleted() {
+ completedCount++;
+ }
+ }
+}
diff --git a/site/data/api-16-1024.json b/site/data/api-16-1024.json
index 6e75f6456..7831c48d2 100644
--- a/site/data/api-16-1024.json
+++ b/site/data/api-16-1024.json
@@ -206,6 +206,32 @@
"tpl_static": 0,
"tpl_async_db": 326043
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 132308,
+ "avg_latency": "6.46ms",
+ "p99_latency": "47.00ms",
+ "cpu": "1571.7%",
+ "memory": "1.5GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "669.72MB/s",
+ "input_bw": "7.44MB/s",
+ "reconnects": 396787,
+ "status_2xx": 1984630,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0,
+ "tpl_baseline": 743239,
+ "tpl_json": 745117,
+ "tpl_db": 0,
+ "tpl_upload": 0,
+ "tpl_static": 0,
+ "tpl_async_db": 496271
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/api-4-256.json b/site/data/api-4-256.json
index 1346d048d..a946cfd9b 100644
--- a/site/data/api-4-256.json
+++ b/site/data/api-4-256.json
@@ -206,6 +206,32 @@
"tpl_static": 0,
"tpl_async_db": 85039
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 43456,
+ "avg_latency": "4.75ms",
+ "p99_latency": "43.10ms",
+ "cpu": "369.0%",
+ "memory": "571.9MiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "219.59MB/s",
+ "input_bw": "2.45MB/s",
+ "reconnects": 130356,
+ "status_2xx": 651851,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0,
+ "tpl_baseline": 244621,
+ "tpl_json": 244024,
+ "tpl_db": 0,
+ "tpl_upload": 0,
+ "tpl_static": 0,
+ "tpl_async_db": 163206
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/async-db-1024.json b/site/data/async-db-1024.json
index bf48c1c49..c5eaf41a1 100644
--- a/site/data/async-db-1024.json
+++ b/site/data/async-db-1024.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 68541,
+ "avg_latency": "14.19ms",
+ "p99_latency": "42.10ms",
+ "cpu": "1860.1%",
+ "memory": "2.2GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "264.67MB/s",
+ "input_bw": "4.58MB/s",
+ "reconnects": 26938,
+ "status_2xx": 685418,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/baseline-4096.json b/site/data/baseline-4096.json
index bff38084e..803844ca1 100644
--- a/site/data/baseline-4096.json
+++ b/site/data/baseline-4096.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 1529299,
+ "avg_latency": "2.68ms",
+ "p99_latency": "7.77ms",
+ "cpu": "6209.9%",
+ "memory": "6.7GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "174.97MB/s",
+ "input_bw": "118.13MB/s",
+ "reconnects": 0,
+ "status_2xx": 7646496,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/baseline-512.json b/site/data/baseline-512.json
index 08c396d63..35d4e97db 100644
--- a/site/data/baseline-512.json
+++ b/site/data/baseline-512.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 1707929,
+ "avg_latency": "299us",
+ "p99_latency": "540us",
+ "cpu": "6257.4%",
+ "memory": "6.8GiB",
+ "connections": 512,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "195.40MB/s",
+ "input_bw": "131.93MB/s",
+ "reconnects": 0,
+ "status_2xx": 8539646,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/baseline-h2-1024.json b/site/data/baseline-h2-1024.json
index ae2696299..157e92dc8 100644
--- a/site/data/baseline-h2-1024.json
+++ b/site/data/baseline-h2-1024.json
@@ -158,6 +158,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2027252,
+ "avg_latency": "45.19ms",
+ "p99_latency": "45.19ms",
+ "cpu": "5700.3%",
+ "memory": "26.1GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "98.62MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 10136466,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hyper",
"language": "Rust",
diff --git a/site/data/baseline-h2-256.json b/site/data/baseline-h2-256.json
index 9e5180d5a..5b94f73a3 100644
--- a/site/data/baseline-h2-256.json
+++ b/site/data/baseline-h2-256.json
@@ -158,6 +158,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2223118,
+ "avg_latency": "11.22ms",
+ "p99_latency": "11.22ms",
+ "cpu": "5910.0%",
+ "memory": "23.2GiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "108.14MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 11116401,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hyper",
"language": "Rust",
diff --git a/site/data/current.json b/site/data/current.json
index 299665a37..ad90d20b3 100644
--- a/site/data/current.json
+++ b/site/data/current.json
@@ -7,7 +7,7 @@
"os": "Ubuntu 24.04.4 LTS",
"kernel": "6.17.0-20-generic",
"docker": "29.3.0",
- "commit": "b11eec8d",
+ "commit": "9ecc8b16",
"governor": "performance",
"docker_runtime": "runc",
"threads_per_core": "2",
diff --git a/site/data/echo-ws-16384.json b/site/data/echo-ws-16384.json
index 5db68a90c..f1d9da39d 100644
--- a/site/data/echo-ws-16384.json
+++ b/site/data/echo-ws-16384.json
@@ -118,6 +118,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 1981975,
+ "avg_latency": "7.56ms",
+ "p99_latency": "11.30ms",
+ "cpu": "6154.8%",
+ "memory": "3.3GiB",
+ "connections": 16384,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "13.63MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 9909876,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "node-websocket",
"language": "JS",
diff --git a/site/data/echo-ws-4096.json b/site/data/echo-ws-4096.json
index 2cbdfd828..5e8c4b2e9 100644
--- a/site/data/echo-ws-4096.json
+++ b/site/data/echo-ws-4096.json
@@ -118,6 +118,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2212682,
+ "avg_latency": "1.84ms",
+ "p99_latency": "3.09ms",
+ "cpu": "6415.9%",
+ "memory": "1.7GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "14.84MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 11063412,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "node-websocket",
"language": "JS",
diff --git a/site/data/echo-ws-512.json b/site/data/echo-ws-512.json
index 3f8a49252..a8064f087 100644
--- a/site/data/echo-ws-512.json
+++ b/site/data/echo-ws-512.json
@@ -118,6 +118,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2332357,
+ "avg_latency": "218us",
+ "p99_latency": "413us",
+ "cpu": "6439.2%",
+ "memory": "986.7MiB",
+ "connections": 512,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "15.57MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 11661786,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "node-websocket",
"language": "JS",
diff --git a/site/data/frameworks.json b/site/data/frameworks.json
index db3f2fa8b..68d3fba93 100644
--- a/site/data/frameworks.json
+++ b/site/data/frameworks.json
@@ -164,6 +164,13 @@
"type": "production",
"engine": "n\u00edma"
},
+ "helidon-tuned": {
+ "dir": "helidon-tuned",
+ "description": "Helidon SE 4.4.1 on N\u00edma WebServer with Java 25, tuned socket options, precompressed static content, HTTP/2, gRPC, and WebSocket support.",
+ "repo": "https://github.com/helidon-io/helidon",
+ "type": "tuned",
+ "engine": "n\u00edma"
+ },
"hono-bun": {
"dir": "hono-bun",
"description": "Ultrafast Web Standards framework running natively on Bun \u2014 no adapter overhead.",
diff --git a/site/data/json-4096.json b/site/data/json-4096.json
index 71585df40..668118bdb 100644
--- a/site/data/json-4096.json
+++ b/site/data/json-4096.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 757679,
+ "avg_latency": "5.08ms",
+ "p99_latency": "14.20ms",
+ "cpu": "6278.5%",
+ "memory": "6.4GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "2.59GB/s",
+ "input_bw": "36.13MB/s",
+ "reconnects": 149567,
+ "status_2xx": 3788398,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/json-comp-16384.json b/site/data/json-comp-16384.json
index 89726fa0a..610f02b51 100644
--- a/site/data/json-comp-16384.json
+++ b/site/data/json-comp-16384.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 306148,
+ "avg_latency": "45.45ms",
+ "p99_latency": "772.80ms",
+ "cpu": "5702.8%",
+ "memory": "12.9GiB",
+ "connections": 16384,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "283.77MB/s",
+ "input_bw": "22.48MB/s",
+ "reconnects": 53437,
+ "status_2xx": 1530743,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/json-comp-4096.json b/site/data/json-comp-4096.json
index 750126a49..df4fd89b7 100644
--- a/site/data/json-comp-4096.json
+++ b/site/data/json-comp-4096.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 356992,
+ "avg_latency": "11.16ms",
+ "p99_latency": "249.70ms",
+ "cpu": "5894.8%",
+ "memory": "7.7GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "330.84MB/s",
+ "input_bw": "26.21MB/s",
+ "reconnects": 69475,
+ "status_2xx": 1784964,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/json-comp-512.json b/site/data/json-comp-512.json
index 9ff8e4e50..d3fed8c91 100644
--- a/site/data/json-comp-512.json
+++ b/site/data/json-comp-512.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 370856,
+ "avg_latency": "1.38ms",
+ "p99_latency": "25.90ms",
+ "cpu": "5912.8%",
+ "memory": "5.8GiB",
+ "connections": 512,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "343.77MB/s",
+ "input_bw": "27.23MB/s",
+ "reconnects": 74163,
+ "status_2xx": 1854281,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/json-tls-4096.json b/site/data/json-tls-4096.json
index c03588bc9..f5a0d35ea 100644
--- a/site/data/json-tls-4096.json
+++ b/site/data/json-tls-4096.json
@@ -38,6 +38,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 618043,
+ "avg_latency": "6.69ms",
+ "p99_latency": "6.69ms",
+ "cpu": "6211.7%",
+ "memory": "8.3GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "2.11GB",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 3150737,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "ngx-php",
"language": "PHP",
diff --git a/site/data/limited-conn-4096.json b/site/data/limited-conn-4096.json
index fa2013d50..d9b3548db 100644
--- a/site/data/limited-conn-4096.json
+++ b/site/data/limited-conn-4096.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 584873,
+ "avg_latency": "6.98ms",
+ "p99_latency": "70.20ms",
+ "cpu": "4659.3%",
+ "memory": "3.0GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "66.91MB/s",
+ "input_bw": "45.18MB/s",
+ "reconnects": 292434,
+ "status_2xx": 2924365,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/limited-conn-512.json b/site/data/limited-conn-512.json
index cbcf6e34d..1fe27a621 100644
--- a/site/data/limited-conn-512.json
+++ b/site/data/limited-conn-512.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 577823,
+ "avg_latency": "878us",
+ "p99_latency": "7.89ms",
+ "cpu": "4862.2%",
+ "memory": "3.8GiB",
+ "connections": 512,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "66.10MB/s",
+ "input_bw": "44.64MB/s",
+ "reconnects": 288910,
+ "status_2xx": 2889119,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/pipelined-4096.json b/site/data/pipelined-4096.json
index 0bc54e23e..e668f5bed 100644
--- a/site/data/pipelined-4096.json
+++ b/site/data/pipelined-4096.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 10029440,
+ "avg_latency": "6.48ms",
+ "p99_latency": "23.10ms",
+ "cpu": "5994.1%",
+ "memory": "7.6GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 16,
+ "bandwidth": "1.12GB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 50147203,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/pipelined-512.json b/site/data/pipelined-512.json
index 8247d862a..4ea379355 100644
--- a/site/data/pipelined-512.json
+++ b/site/data/pipelined-512.json
@@ -198,6 +198,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 10901216,
+ "avg_latency": "713us",
+ "p99_latency": "2.71ms",
+ "cpu": "6133.0%",
+ "memory": "6.5GiB",
+ "connections": 512,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 16,
+ "bandwidth": "1.22GB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 54506083,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/static-1024.json b/site/data/static-1024.json
index b3c90e31d..b5ed3386b 100644
--- a/site/data/static-1024.json
+++ b/site/data/static-1024.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 343964,
+ "avg_latency": "8.57ms",
+ "p99_latency": "8.57ms",
+ "cpu": "5833.2%",
+ "memory": "5.0GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "5.27GB",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 1748247,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/static-4096.json b/site/data/static-4096.json
index 7b02b39e6..f647f47b9 100644
--- a/site/data/static-4096.json
+++ b/site/data/static-4096.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 326387,
+ "avg_latency": "34.84ms",
+ "p99_latency": "34.84ms",
+ "cpu": "5696.8%",
+ "memory": "5.8GiB",
+ "connections": 4096,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "5.00GB",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 1664695,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/static-6800.json b/site/data/static-6800.json
index 5ec823389..59757531d 100644
--- a/site/data/static-6800.json
+++ b/site/data/static-6800.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 298263,
+ "avg_latency": "60.18ms",
+ "p99_latency": "60.18ms",
+ "cpu": "5476.1%",
+ "memory": "6.7GiB",
+ "connections": 6800,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "4.57GB",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 1520926,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/static-h2-1024.json b/site/data/static-h2-1024.json
index 47d66d33a..73c3b5f87 100644
--- a/site/data/static-h2-1024.json
+++ b/site/data/static-h2-1024.json
@@ -158,6 +158,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 310187,
+ "avg_latency": "157.83ms",
+ "p99_latency": "157.83ms",
+ "cpu": "6190.0%",
+ "memory": "17.2GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "4.72GB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 1551146,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hyper",
"language": "Rust",
diff --git a/site/data/static-h2-256.json b/site/data/static-h2-256.json
index ade00085b..7eb3a42f4 100644
--- a/site/data/static-h2-256.json
+++ b/site/data/static-h2-256.json
@@ -158,6 +158,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 265851,
+ "avg_latency": "79.70ms",
+ "p99_latency": "79.70ms",
+ "cpu": "6025.3%",
+ "memory": "15.0GiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "4.04GB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 1329521,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hyper",
"language": "Rust",
diff --git a/site/data/stream-grpc-64.json b/site/data/stream-grpc-64.json
index a01c236fe..6cdef5821 100644
--- a/site/data/stream-grpc-64.json
+++ b/site/data/stream-grpc-64.json
@@ -17,5 +17,25 @@
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 1
+ },
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 554000,
+ "avg_latency": "1.58s",
+ "p99_latency": "2.08s",
+ "cpu": "1086.2%",
+ "memory": "4.1GiB",
+ "connections": 64,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "0",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 554,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 1
}
]
\ No newline at end of file
diff --git a/site/data/stream-grpc-tls-64.json b/site/data/stream-grpc-tls-64.json
index d63f0ec91..389640470 100644
--- a/site/data/stream-grpc-tls-64.json
+++ b/site/data/stream-grpc-tls-64.json
@@ -17,5 +17,25 @@
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 8
+ },
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 513000,
+ "avg_latency": "1.66s",
+ "p99_latency": "2.16s",
+ "cpu": "1452.3%",
+ "memory": "4.2GiB",
+ "connections": 64,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "0",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 513,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 2
}
]
\ No newline at end of file
diff --git a/site/data/unary-grpc-1024.json b/site/data/unary-grpc-1024.json
index 6a5b9a7f0..4a310abae 100644
--- a/site/data/unary-grpc-1024.json
+++ b/site/data/unary-grpc-1024.json
@@ -58,6 +58,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 898409,
+ "avg_latency": "112.12ms",
+ "p99_latency": "112.12ms",
+ "cpu": "5869.2%",
+ "memory": "27.1GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "32.58MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 4493961,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "quarkus-jvm",
"language": "Java",
diff --git a/site/data/unary-grpc-256.json b/site/data/unary-grpc-256.json
index 52fc20e5e..75844342f 100644
--- a/site/data/unary-grpc-256.json
+++ b/site/data/unary-grpc-256.json
@@ -58,6 +58,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 960380,
+ "avg_latency": "27.07ms",
+ "p99_latency": "27.07ms",
+ "cpu": "6053.4%",
+ "memory": "25.7GiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "34.81MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 4802697,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "quarkus-jvm",
"language": "Java",
diff --git a/site/data/unary-grpc-tls-1024.json b/site/data/unary-grpc-tls-1024.json
index 52abd9e85..6936c55a6 100644
--- a/site/data/unary-grpc-tls-1024.json
+++ b/site/data/unary-grpc-tls-1024.json
@@ -58,6 +58,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 823252,
+ "avg_latency": "116.55ms",
+ "p99_latency": "116.55ms",
+ "cpu": "5932.9%",
+ "memory": "26.2GiB",
+ "connections": 1024,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "29.85MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 4116469,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "quarkus-jvm",
"language": "Java",
diff --git a/site/data/unary-grpc-tls-256.json b/site/data/unary-grpc-tls-256.json
index d87f56ed9..250d264e0 100644
--- a/site/data/unary-grpc-tls-256.json
+++ b/site/data/unary-grpc-tls-256.json
@@ -58,6 +58,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 850405,
+ "avg_latency": "29.44ms",
+ "p99_latency": "29.44ms",
+ "cpu": "6111.4%",
+ "memory": "24.9GiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "30.82MB/s",
+ "input_bw": "",
+ "reconnects": 0,
+ "status_2xx": 4252346,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "quarkus-jvm",
"language": "Java",
diff --git a/site/data/upload-256.json b/site/data/upload-256.json
index 67c8ddbf4..f2c13c579 100644
--- a/site/data/upload-256.json
+++ b/site/data/upload-256.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2292,
+ "avg_latency": "110.50ms",
+ "p99_latency": "386.00ms",
+ "cpu": "6142.0%",
+ "memory": "5.9GiB",
+ "connections": 256,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "280.57KB/s",
+ "input_bw": "18.18GB/s",
+ "reconnects": 2231,
+ "status_2xx": 11486,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/data/upload-32.json b/site/data/upload-32.json
index 0d8409bd7..675540815 100644
--- a/site/data/upload-32.json
+++ b/site/data/upload-32.json
@@ -178,6 +178,26 @@
"status_4xx": 0,
"status_5xx": 0
},
+ {
+ "framework": "helidon-tuned",
+ "language": "Java",
+ "rps": 2024,
+ "avg_latency": "15.78ms",
+ "p99_latency": "44.20ms",
+ "cpu": "3089.6%",
+ "memory": "5.4GiB",
+ "connections": 32,
+ "threads": 64,
+ "duration": "5s",
+ "pipeline": 1,
+ "bandwidth": "247.48KB/s",
+ "input_bw": "16.05GB/s",
+ "reconnects": 2030,
+ "status_2xx": 10121,
+ "status_3xx": 0,
+ "status_4xx": 0,
+ "status_5xx": 0
+ },
{
"framework": "hono-bun",
"language": "TS",
diff --git a/site/static/logs/api-16/1024/helidon-tuned.log b/site/static/logs/api-16/1024/helidon-tuned.log
new file mode 100644
index 000000000..af2807eef
--- /dev/null
+++ b/site/static/logs/api-16/1024/helidon-tuned.log
@@ -0,0 +1,34 @@
+Apr 14, 2026 6:47:29 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+Apr 14, 2026 6:47:30 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Starting...
+Apr 14, 2026 6:47:30 PM com.zaxxer.hikari.pool.HikariPool checkFailFast
+INFO: HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47874b25
+Apr 14, 2026 6:47:30 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Start completed.
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:47:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x6199f41e] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:47:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:47:30 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:47:30 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:47:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:47:30 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:47:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x5526b0bb] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:47:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x1c3a583d] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:47:30 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 34 milliseconds. 1029 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/api-4/256/helidon-tuned.log b/site/static/logs/api-4/256/helidon-tuned.log
new file mode 100644
index 000000000..e2aa0762e
--- /dev/null
+++ b/site/static/logs/api-4/256/helidon-tuned.log
@@ -0,0 +1,34 @@
+Apr 14, 2026 6:46:34 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+Apr 14, 2026 6:46:35 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Starting...
+Apr 14, 2026 6:46:35 PM com.zaxxer.hikari.pool.HikariPool checkFailFast
+INFO: HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47874b25
+Apr 14, 2026 6:46:35 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Start completed.
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:46:35 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x6f93194e] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:46:35 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:46:35 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:46:35 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:46:35 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:46:35 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:46:35 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x48b8b030] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:46:35 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0fafed6e] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:46:35 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 50 milliseconds. 1092 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/async-db/1024/helidon-tuned.log b/site/static/logs/async-db/1024/helidon-tuned.log
new file mode 100644
index 000000000..e0437cbe6
--- /dev/null
+++ b/site/static/logs/async-db/1024/helidon-tuned.log
@@ -0,0 +1,34 @@
+Apr 14, 2026 6:49:36 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+Apr 14, 2026 6:49:37 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Starting...
+Apr 14, 2026 6:49:37 PM com.zaxxer.hikari.pool.HikariPool checkFailFast
+INFO: HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47874b25
+Apr 14, 2026 6:49:37 PM com.zaxxer.hikari.HikariDataSource
+INFO: HikariPool-1 - Start completed.
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:49:37 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x5cfb71d8] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:49:37 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:49:37 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:49:37 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:49:37 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:49:37 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:49:37 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x16557574] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:49:37 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x5aaa75c6] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:49:37 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 36 milliseconds. 1062 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/baseline-h2/1024/helidon-tuned.log b/site/static/logs/baseline-h2/1024/helidon-tuned.log
new file mode 100644
index 000000000..cc1fee0b5
--- /dev/null
+++ b/site/static/logs/baseline-h2/1024/helidon-tuned.log
@@ -0,0 +1,519 @@
+Apr 14, 2026 6:50:42 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:50:42 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7bf8099f] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:50:42 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:50:42 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:50:42 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:50:42 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:50:42 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:50:42 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x252c9cbf] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:50:42 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x5a6b3d51] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:50:42 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 1025 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:50:55 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x612d6e27] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:50:55 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x1fb595cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:50:55 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x1f72e501] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x2aa0645a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16709 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16709 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.put(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x0ddd607e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (48 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (48 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x533169d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x6b576774] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x5a4619ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x6d685dad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x09793cdb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (48 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (48 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:02 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5a6b3d51 0x31c4d8cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (48 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (48 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
diff --git a/site/static/logs/baseline-h2/256/helidon-tuned.log b/site/static/logs/baseline-h2/256/helidon-tuned.log
new file mode 100644
index 000000000..d815a119c
--- /dev/null
+++ b/site/static/logs/baseline-h2/256/helidon-tuned.log
@@ -0,0 +1,116 @@
+Apr 14, 2026 6:50:16 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:50:17 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:50:17 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:50:17 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x06bad58d] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:50:17 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:50:17 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:50:17 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:50:17 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x38cb4ef4] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:50:17 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x601e2b02] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:50:17 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 1010 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:50:29 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x601e2b02 0x5a742dcb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:50:29 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x601e2b02 0x3f6f21c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/baseline2, query=?a=1&b=1, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (79 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (79 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
diff --git a/site/static/logs/baseline/4096/helidon-tuned.log b/site/static/logs/baseline/4096/helidon-tuned.log
new file mode 100644
index 000000000..7143e56b9
--- /dev/null
+++ b/site/static/logs/baseline/4096/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:41:39 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:41:40 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:41:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x1f4ac74c] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:41:40 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:41:40 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:41:40 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:41:40 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:41:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x31aea52c] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:41:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x465c1c8b] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:41:40 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 984 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/baseline/512/helidon-tuned.log b/site/static/logs/baseline/512/helidon-tuned.log
new file mode 100644
index 000000000..944f8dc6c
--- /dev/null
+++ b/site/static/logs/baseline/512/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:41:14 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:41:15 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:41:15 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:41:15 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:41:15 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:41:15 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:41:15 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x362467e3] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:41:15 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x2c70b66f] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:41:15 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x2e59ddac] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:41:15 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 55 milliseconds. 1198 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/echo-ws/16384/helidon-tuned.log b/site/static/logs/echo-ws/16384/helidon-tuned.log
new file mode 100644
index 000000000..813d8a174
--- /dev/null
+++ b/site/static/logs/echo-ws/16384/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:55:17 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:55:18 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:55:18 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0d13765d] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:55:18 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:55:18 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:55:18 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:55:18 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:55:18 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x539d804f] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:55:18 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x378a43f9] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:55:18 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 38 milliseconds. 1001 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/echo-ws/4096/helidon-tuned.log b/site/static/logs/echo-ws/4096/helidon-tuned.log
new file mode 100644
index 000000000..adc0f64eb
--- /dev/null
+++ b/site/static/logs/echo-ws/4096/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:54:53 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:54:54 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:54:54 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:54:54 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7f95a3bc] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:54:54 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:54:54 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:54:54 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:54:54 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7de5076a] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:54:54 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x1b3c3d7d] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:54:54 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 38 milliseconds. 983 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/echo-ws/512/helidon-tuned.log b/site/static/logs/echo-ws/512/helidon-tuned.log
new file mode 100644
index 000000000..57e1dc98f
--- /dev/null
+++ b/site/static/logs/echo-ws/512/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:54:30 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:54:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x714dae27] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:54:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:54:30 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:54:30 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:54:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:54:30 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:54:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x07abc7de] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:54:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0659c9f8] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:54:30 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 40 milliseconds. 966 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/json-comp/16384/helidon-tuned.log b/site/static/logs/json-comp/16384/helidon-tuned.log
new file mode 100644
index 000000000..36a5af0f1
--- /dev/null
+++ b/site/static/logs/json-comp/16384/helidon-tuned.log
@@ -0,0 +1,5000 @@
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x60cfd635] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1656a45b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2d694d7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x45d6a02e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x43796c07] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x52787751] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x50537976] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x0ff393ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6c5e4c23] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x007acba6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x615be25b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7845b2cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x39607555] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x764fd93e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1251a378] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x170c122c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x51bbe56b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4f3c55d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2b8b3c20] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x5edd8c57] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x12e828a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x10127716] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4c4215f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x339c7941] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x09d5e648] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x02d72d7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x77b7cb1f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6e60c469] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x0ed8f210] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x231ffda4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x498e0ce1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1b1aaef7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x38d7b941] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x22b3b7d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x3d5c2cd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x562d920f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x156e4953] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x20427a3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6da99832] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6475cfb7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x3b1af253] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x05c33a87] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4efa1047] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x74ad74c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2d0b05cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x3ce27bb3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x524d6006] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1dd98e9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4fec4bba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x07508187] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x0af14f3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2c735f95] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x0dc21c27] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x106ddab1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x274ba464] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x24a1857d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x78c71ddd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x59a1ac5f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x12609985] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4043c7a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1c04ed41] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2a7353d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x267b587d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2539f862] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x47e4a4ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6e369eb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x5ea1d249] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6a95527e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x23b6feef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x40bb668c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x748879f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x68ff1244] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x6270b3f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x74888c42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7abd710b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x50cd01d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x058443d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x73fe445e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7beb9967] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x67cb669c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4151b48f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x5c73cb59] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x0a9c8b49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x17286404] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x71cdcc77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x63e31da4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x39dd5729] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7fbaa7aa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x017accee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2f44ceb6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x45a22a02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x562bc15d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x543176c6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x180261d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x40b05dbd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x348227e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x49838d9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4732bb02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x42504f5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7fd8c8f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x163419eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x299f6f95] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x14938d8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x33a20e86] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x3fbfbe69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x5c7a164e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2c73b723] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x3ad30206] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1e72ad9d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/5, query=?m=7, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x491130dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x097ef26a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x2feb373d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x75505cf9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x583cae5f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x373886da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x5bbffa1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7df8c52d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/1, query=?m=3, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x221209a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x4c77162c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/15, query=?m=5, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1298ebed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x509d3e9e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/40, query=?m=8, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x1da105b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x7bfaa1b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/50, query=?m=6, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x19139e43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/10, query=?m=2, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:45:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x171ce84b 0x30c6e960] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/json/25, query=?m=4, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.JsonHandler.handle(JsonHandler.java:62)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
diff --git a/site/static/logs/json-comp/4096/helidon-tuned.log b/site/static/logs/json-comp/4096/helidon-tuned.log
new file mode 100644
index 000000000..b3be3f155
--- /dev/null
+++ b/site/static/logs/json-comp/4096/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:44:29 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:44:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:44:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x1f0c3b39] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:44:30 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:44:30 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:44:30 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:44:30 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:44:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x3f985425] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:44:30 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0d13765d] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:44:30 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 37 milliseconds. 976 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/json-comp/512/helidon-tuned.log b/site/static/logs/json-comp/512/helidon-tuned.log
new file mode 100644
index 000000000..5ac9bbd9e
--- /dev/null
+++ b/site/static/logs/json-comp/512/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:44:04 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:44:05 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:44:05 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:44:05 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x483c7426] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:44:05 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:44:05 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:44:05 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:44:05 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x43861ee4] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:44:05 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x6d2d80f2] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:44:05 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 969 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/json-tls/4096/helidon-tuned.log b/site/static/logs/json-tls/4096/helidon-tuned.log
new file mode 100644
index 000000000..f5cc1cc44
--- /dev/null
+++ b/site/static/logs/json-tls/4096/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:45:20 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:45:21 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:45:21 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x3be25250] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:45:21 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:45:21 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:45:21 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:45:21 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:45:21 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x760c65d9] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:45:21 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x3c088528] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:45:21 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 984 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/json/4096/helidon-tuned.log b/site/static/logs/json/4096/helidon-tuned.log
new file mode 100644
index 000000000..c9fa08099
--- /dev/null
+++ b/site/static/logs/json/4096/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:43:39 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:43:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7bf8099f] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:43:40 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:43:40 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:43:40 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:43:40 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:43:40 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:43:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x23da53c6] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:43:40 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x21aaa5a3] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:43:40 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 37 milliseconds. 968 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/limited-conn/4096/helidon-tuned.log b/site/static/logs/limited-conn/4096/helidon-tuned.log
new file mode 100644
index 000000000..22a448509
--- /dev/null
+++ b/site/static/logs/limited-conn/4096/helidon-tuned.log
@@ -0,0 +1,47828 @@
+Apr 14, 2026 6:43:16 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:43:16 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:43:16 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x419ca503] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:43:16 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:43:16 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:43:16 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:43:16 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:43:16 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x24534eb9] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:43:16 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x6b997479] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:43:16 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 974 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7a250037] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1fda1e43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6df834dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3548d6e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04137f2a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x16442e97] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c58ef4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fe87fa6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x459381f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d8eb8ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f6bfa39] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ece1e43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4626e733] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0571e550] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x558b46be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x54d0a6ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47b52a7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7293e2e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5424ac2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6ff5560f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2706b532] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46c997e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0920cb97] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f5e5127] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x538e93ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6840f539] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f65e3a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52b19fa0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72921654] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3446ba1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7d5ffaeb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x107d3e16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3b564022] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6279317c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4e910618] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x301ef703] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x131222ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x535f3bf4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04e8f4b0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bb9be75] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e3d262c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x611b3011] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x25b698d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5667bd03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x03239117] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17826150] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4670b964] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37a4f6fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19340c4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4304fe6d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34a31f31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17764e83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x304bd5f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17fb32cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x137c9598] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19e937af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7ad1ae21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2c3da2b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04dfbef6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00f9b29b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1df3cb2b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7d1cabf8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x662fcef5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3f71cfba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x68abaae4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x56bc118d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b867569] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x645cd8fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x45b28e6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1a878dd6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19149e37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b963aef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67ca222e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b156c28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a2ff6f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x77fc150c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6db9fe4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x11687be6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5e7eb572] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00905e02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5419d39c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b836f4c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x717aabb6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50f098e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63f6c772] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x440c30e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7bbeacee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a7afeb7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2cf860f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b14a321] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ae39179] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7712e546] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70777aa3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x499f0f65] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x283628e2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d3ab047] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66c414cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0bea7e37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x20c87ce9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d9cffce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b297225] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3540e3e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3fe40cd6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x660a56ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67f36803] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x040a1935] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30031cd1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x100f43a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x57d2f2af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4ed065d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x796c4e7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x156e34ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x001033c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2db45372] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3905edf6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ce84cde] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b0aa20d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x781aaae4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46e3cd3a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7bcd271a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a4c6fe0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x71a0e417] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x000f689f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18c7085e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ede73cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x14f6cf44] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x21be822d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67f35a3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2de47b6a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ee4441e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x584a31d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2228e61a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b5d7b2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x044b833d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x01010a39] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ec5aebb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x106fdcc0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fda9c31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1d7775e9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b3bd063] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x612c7e67] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x429e907b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78859d24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ef1fe82] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x06f6829a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x229deb0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x211a1f65] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0eeec401] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x262c6dd7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x06aaadfe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6e220ec1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x607b4f7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x360f3cb5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a998fe7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x288334b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2464b442] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5352b9d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0382d4d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b416d74] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19336c15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08746298] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7129e458] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x594a7d55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a398e0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x596284bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6fdebc55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0edba987] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b148808] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a050f41] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x13460434] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22728715] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e8b0330] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x64b5f462] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3d3e1ea7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d6f1244] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x765354fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d07c0d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66059693] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a33a009] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49345506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x595dfc33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08261ea1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x77fc6f2d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x627e8f6d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3811a763] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b27e311] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3ddde841] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0bd06632] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6dbd670a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5bf34266] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e9e8cec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b57916d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x028def1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d4ff15b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d12d738] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x13cf024e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x563257d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x43bf2873] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1355ad66] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x13f6406c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x028bd0a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7c807ef8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d37d383] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59f1ae63] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e73d7f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a4c8654] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05a6bfdd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b3fc55a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08763911] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x68ec793c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72181c56] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1180398a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39fe50e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x10ba5bba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f716787] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5774fd69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x56f1fc1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46927113] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6111a2ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2dc69eb0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x054146a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x208751ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4554bf93] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x57533776] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b3046be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d63a09b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x28ee66b5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1099827d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2787b695] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x71696bf7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a57eb5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a767ba0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bd7a12a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x64660eea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1054c146] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x55d8ffa2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5153fdba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04af03b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4d9a7f0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f5352d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4147c03a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26b06304] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3910600f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x62a4f69d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ce22e86] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70576e2a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ae8a7dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2dd8789c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x520e7586] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x03f71ea9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x781f8167] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1dc6f67f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f7579fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34ab15f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x507a8fa7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0c1dd0cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0e76c74b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a7ff42b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37f43238] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fc29f85] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66f3343b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x124a97f5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x287a2e25] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x32cce29c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52b1345d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x40b86d86] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2bafd49c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5e1d36f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41c80648] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ab38f35] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6ef9ab2b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31dc9a42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d68255d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3f5de97f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x54060ee4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1738c1a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39563e6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bf86649] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c023de6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f9e42fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1d7b68a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3cb07e68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3e920c3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7dc0f2bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x68ee25c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7bfd1515] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bfe4f54] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a30f7bd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fcd606d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x73c0a7b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59a32ac8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x379200e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6aa661d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3dae5f0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a8114a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72385976] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x43af50f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x515f1463] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61721819] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x38d90ffa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f752b4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x127ca4cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bb2133f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x249fabec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d795f3c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x64e40c74] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x760acd7e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1cf328ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6e348566] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f2ee784] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26a32198] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x44c55a55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7be12fe8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1671dcf9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6273d907] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a660f9d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1a73711b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x774d060a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ea0d181] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e9379d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1df9fcb6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x25d8b0cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x571c532d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x07064913] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x20cf1eae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04de07dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x129bf51b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x576652a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4919e609] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x28ba94f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x005563da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x438b286a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x065a9280] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x38d9ed29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59faa89b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x33e5787e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22026221] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x309a2953] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24093dd4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1b57ce8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0df15034] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c069a70] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6ed99046] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ecbe4d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x414480fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5614f548] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x23d3f6fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x74a0ced8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7da3a799] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59d16fd4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x412b621b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2381f195] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3157c6c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3afe062e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3c6d92c5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ba56a4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d3f60a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78dbfb7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26181396] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a0c6591] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x251f1754] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f26b0ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4e599842] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4920a064] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x450f205c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0dacab53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69aea07d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ea64db8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59310cf2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4177ef43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x095fbabf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4add4fc5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b5535a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05e31296] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x40489267] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f8773b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e2a5568] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31b2b056] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3724bac1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x340a6846] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72097b2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x65e013b9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d355979] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50b745c7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x53df70cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x708a7ca1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3d05a3a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x347d0ef1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x206ac4a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x25be91e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x343ab2ef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x343691dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x06b81341] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0eab98cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5fd039e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3db94961] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e65fb13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5172ad1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x77cee071] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b911812] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a691d68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30516994] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x56838784] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c8b9716] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b747ff6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3732cbe9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x76096cb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b793cd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ecd1941] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x786f6c4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x16418935] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3255c9e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7d1575a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f944126] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x197b154e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49b3b9df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6913a697] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f44ed9a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3c1bce32] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4aebfce7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bea0ff6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31282909] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x027d5513] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1b572251] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63ef9437] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fae5384] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3aa15e53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b493d1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4d6a9620] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x413307af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f4a8e4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ea25ebe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x65e1d778] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x494fcd83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x74853923] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fddbb5c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6910b947] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61ef3fa6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17a661a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x58e6192b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6cad7758] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59abfe79] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59061939] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ca24717] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x02f7064b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f39bb83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15947cca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b969b2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x261caa90] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f6f1af5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x335cbeca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2831b7be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34f73a5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3978ee51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x42e2d262] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7955b1d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x000a04ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x10033e1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d66f02b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a5319cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72f41786] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x008409e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61e3654e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6c3e9433] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1fe5bf9a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x62c656f7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x509f232c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5db72432] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b0693a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b1f25af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15eda4e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22fa6412] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x440b867f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a2f6e9c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3023a489] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e9726ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e1c8e98] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x42faa530] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x654b4506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x612b21d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3ca403a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x292f5b10] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59b17d92] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x73b59be8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3588d32f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x360b1e7b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x317d5528] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6e62e0ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3d98830a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1860e3db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67496f41] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5162fc4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x288b2c5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x459760d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f245612] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e411da0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a00ab09] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x038465c5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x75543a19] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x745e282a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e030b9e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5178929c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x346b0bfa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x344c85ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2dafcaf7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b4244e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f6d5558] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d4c5def] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a17e83a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x182d40f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1265a733] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34ebcd9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08465807] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00aec26c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52f558cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x353c9b00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x396bd739] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x297040ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x328b855f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x21e7580c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x038dc5f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5f177905] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x07ff4705] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1830a085] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3762c312] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x07d1f249] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x271e426e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0bed7751] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e03f4da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x406b477e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x144e9437] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41de2651] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6584e103] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6afeedcc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a104bd2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63e4baeb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x730dc4e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63c8fa7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34e8c54d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7a04693b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7faceb34] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24e535ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x636b153a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ad31fb4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x529212c1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69023e9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6fd54edc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b9eddb8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0325e7e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7d2f34f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d213b9c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4048fa1f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17096c28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x29534085] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7149d0c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47e609f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b45fe58] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x54dffd3f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x02d9f060] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66e16f52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4770961a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x73d1d430] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2836e608] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f54b6d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x16240f94] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5113d7ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3c3811f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x220b7baa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18145743] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52289793] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x60bd9ab7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x51372097] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d359b07] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e7473fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5980dfaf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x56b875dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d637e24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37f8611d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0583dbb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x42138fa0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a6299cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26142488] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34553e0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3b5b0dfa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6961661c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x493a93eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1d355125] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x740927b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b7d98b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66412197] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b5cd198] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31ae5971] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b120d75] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x739ffeff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a16dfb0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1b00656b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69aa6d32] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x60a4b477] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f9933ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52419024] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x25d0bed1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x240efb2b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5bc8a1c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x342a6ab2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x25626055] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d75d854] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x355c3a95] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41b16776] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d5040e2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59b905d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17051937] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47bc08ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7874c282] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17d8ff05] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e0df9ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x140e2c1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f69f68b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f9f78d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x572f33b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a913e1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2f5fd749] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0e94593e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x11e31b42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2323eb42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x13eb64e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e580180] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6f40b687] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x44743e01] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0eeee068] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15807c2a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bad0743] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3409ef33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x501cf6c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x135145d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fd844b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3cab71a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e5b9253] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x600e06e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x02e5704c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37300b6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x271589f2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4926dd08] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3449aaa4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5721a33d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34ea78ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5f5f7dfa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70afe0b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5579de52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70c806f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41237bd4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x636127cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3eefccb4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30638058] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7cdb0e6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5633f945] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4ca0250c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47cd1435] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x27a9d510] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f59f71c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4ed1d507] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x342c2ac9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2538882d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4af8bfd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d6001ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6116910c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7a4c5b34] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e80ef25] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52c47d7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a2f5d1b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7eaae1da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x36eab0ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0248dea0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x02812609] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4145cebf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4af023e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3c14335a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x226667b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x491536fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5e98979b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59ae47dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24228702] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1de0f8ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x471a9bad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61cc979a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x58143506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22d2f31c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x416492e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x32988ef6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3fee7ed7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x23c2b62c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00c0b8ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08dac028] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a829a8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50f5c9e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x21db3b1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0401c0ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f61cf21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a05491b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x71bf8b24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00f665b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49e9ee3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5f3fffa0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00c4d390] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3722dcd6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7744e2fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4deb4538] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x76f4ab24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a6d94d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x65f6671b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x735160ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d836f05] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2be2b7bb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f7107c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46794d5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41ea2c2d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30595bc3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18d9aeca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x20bd67d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x234b087d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d30931b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x21f23371] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1748d6bb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7f824c23] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d69afb6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72dbece4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ece1e1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0e4d298a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3caf9faf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5f8d7949] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x56b87576] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3dd99644] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e6d1dd8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c37439c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3f060be8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x345c5dd1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5873db63] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0315296f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1fb0e8fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0dc6ecb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3788315e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e93ff42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c9e59fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x28bb255e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2629a111] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x23f5b86a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6856219a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3f2a9158] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2f4092ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7fc74e21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0fffb07c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b1a70ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0671e576] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a1a6972] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x64a664b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x173af935] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x51c413e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04831cb1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a75ea08] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0e025dc1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x16c8f34c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x773c9f4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x587acfe4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x44c7ac14] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x33e40c6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6c21c207] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61efde83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3fb55ddd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7386343b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67f233c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b63f96a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x45ad080d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b12033a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b308de2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x207ec068] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2819ec09] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b84ce9b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6688739a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a1c1ab4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0afb1191] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19d206f7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x17664b81] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0a993c0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3012affd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2372ebf6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50a649d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3d9997d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6ca26bc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4308d6e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x59f3fb0b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x753f9c97] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fff0c87] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41f6677b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63f62541] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7d097076] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x568eeda0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x229a2357] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x40b44e78] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6c630a0f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2da0bf60] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1de66727] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x65d5f44d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46730dff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a9d3497] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ff790c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x03ff993a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0fea5579] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f4922e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2994b1c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x62820645] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0634df37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b117b00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a5a2b82] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78d8a85b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5bb5f5b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5636f7c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x09815bd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18693b4c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5731a97d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b8d232d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x383427d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1be1bb13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ec98090] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x68e8edac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x01d87445] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1c26f109] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x01fe3c1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x23237316] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49fc3b77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49b0b93d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7c023f43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39fe7792] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26fac578] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7476ce6d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x526ef605] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x01cf4372] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ec11fbd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x062d6705] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x12fb0202] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1714d9c1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7ec2d54a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3a623172] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ca871d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52231fc7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70af21c4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d996cd1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x063e05a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x026f5fda] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fd4eed0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x793347d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78867860] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15c98b70] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x412589b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f04aada] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1da7eb44] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1a64350c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3396ddd3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e0e9769] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x175b89b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x20b49447] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x286a01a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x313ac9fd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b3a3fea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x042cf136] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x12dda84e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1635687a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1f59f11f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x41e4b787] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x124cbe29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x187c6222] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f29e03c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x493518d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05b81d44] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0835dd49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x318420e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x764f47cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x402ccb68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4790a725] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7249dfec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x02e676d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2db2905e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x390e9244] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7755eb42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0026c305] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x516518bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30784bd5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47621354] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a6eaf5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5110d73d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x501c2b64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4556c564] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d1cdf80] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4836408d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b0674ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39194f7b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2c94888d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00547299] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x42b4b2ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72a1ac7e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x289ef63d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ad16ff3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61d3946b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70da2486] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50bcbb00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69d2a7ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70b91aeb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x542dfa64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a979a60] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1d6f041d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x54033821] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7ee24b8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x61c0668a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f1443e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x248c535e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d66a791] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c5259fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05a314b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4932848a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x32e9866a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0d518c06] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0907e476] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x30798417] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67dbae3f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1b531f5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39784bba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x26a98b10] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4097e8f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x220ffcd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bf8bf7a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4d57cea9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31b5f1bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e16d434] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6c842ce7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0af5de40] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x03cdab4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a28bfaa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2ffe86d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fcf3add] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x187f9347] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4d06a57a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1a63fe2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7c590263] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x73278cc5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x45f466fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b054b52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3f247771] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x04bd8108] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x072dc3f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x79f180e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3e82b98f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x590ca00e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x58e9def5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4366487c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c406927] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3cc133b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x55d6fc03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x19318123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f5d539a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2053d568] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5650f288] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a4dd4aa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4e6033b0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5c1b90e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4ef41f8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x51193780] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1148bc0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08991e53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3c3f21b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4623cd45] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x252220c7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2d6263ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x70ade103] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5851091e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66b50572] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6ada99db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x45ea0858] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x45801d99] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c5cf63f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6825de83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1078fdb1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0959c353] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x521c3006] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0441147f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7e4f4064] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78932a78] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1119669d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x399a47e9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0ef5df5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3bfb9624] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4a2b0a4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5660ac3f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3ed7df51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5dee7bd9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x33df421c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x33f8f15a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x32332375] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7439b85d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3efd2e1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x224e5414] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x291ea27b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4bf90e7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x467144f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bd184f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x14df95ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x72c78961] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x242b054c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05ff03ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a4447cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66ccd650] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6bcb3c61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2cfc75f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x553b8fed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x082d9f14] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a3dd7d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x541a4138] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52a08980] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x107102c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bf3d8dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x64a8f737] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b8cd67a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7774a64c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2f85b832] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18c441a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7a658705] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15e4b8f2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4ac63b6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5e60c585] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3d45ba8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5038cb0b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6301504f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24985994] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22dc35da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3b435825] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x52b17a63] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6be16a94] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x53466d46] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x79c28345] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4992c193] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0e7f6d9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1513e949] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x497b797b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7ab6fc0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x760b331b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6af5ad48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7c3557d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x65306c28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4bd86f07] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x784164dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5a637740] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18c982c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b28c0da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05675ee6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x597737be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x75cd5cca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x55a2d2f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x13bda9a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x450c1320] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x66f285a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6678200e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x640be2c7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x39b61451] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x62bd4f36] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a09ba69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f9c7516] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08394139] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2b8e03b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3034e8dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6d3e1277] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x78846e28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x76ab10a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x11c3ea77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x291267b9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6203e934] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x67e96521] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x00f08136] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x472c8248] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5ccbd47f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08f8f168] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x619d61d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0f4974b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5bfd82e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x462888e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x764f9f93] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x204c7b0f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1b95f760] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24faf6c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15bd5a0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x09b1632d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5fe09181] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x63511c5f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5cfe7ad0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x48075da1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6b7de20b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5192bb22] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x151754fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1e57452d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x088b3e19] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x53705034] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7b626b46] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69e77ba2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x003cf09a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3968d368] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x71970054] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x60747623] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x23da69b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x48c3123a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x44a0497f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4f33e00e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x697c2040] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x419ae0e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ac19123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4fb9372a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4c641792] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x531d6029] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x06b24830] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x226bf927] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4836ec81] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1bfe5c61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5fc64123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4b09fdf1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1be3b69e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x58992165] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31953ee1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x08715b69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6fcdac28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6517e552] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0c1c3e1b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x645e99a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x336c44ef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x47074760] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x020adc77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5b6125ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5d56ba29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2a156f52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x69b1212c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x05fddb71] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x22c148a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x50c61017] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1cce072e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0dadef5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4abd329d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x7803430e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x35e08e9a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0af99adb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0da278e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2fa26b43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x49cb1005] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x496cdff3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6cb63fb3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x308fb78d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x15722115] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x477bfb9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x5220f6fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e2d9cfd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x34f41181] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4360a39c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x642f26a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0dc10e28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x16131e02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x332cc513] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x012539c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x31a02729] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x11eef448] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x001d503d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x387432f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0da9240e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2e9fefd3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x36fe2b22] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1c1ac5e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a6d5fd1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x68ff47b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b4f4bb0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0b1e0404] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x566ae9fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x187a3367] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1cb05fcb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0c758c84] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37d6af42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x28d2b94a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x27dbbac3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x539b7f37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x2158de05] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x46930170] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0943bf06] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x0164f9e2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x3fb7dcbc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x18130d7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1ad9a6e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6e915079] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x1c2541f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x4acc9fd0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x393285f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x24e78d9c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x6a3afd77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselineHandler.handle(BaselineHandler.java:23)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x406a12a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:43:22 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x419ca503 0x37ddeb60] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=POST, uriPath=/baseline11, query=?a=13&b=42, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:622)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.BaselinePostHandler.handle(BaselinePostHandler.java:25)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
diff --git a/site/static/logs/limited-conn/512/helidon-tuned.log b/site/static/logs/limited-conn/512/helidon-tuned.log
new file mode 100644
index 000000000..bc6e9e2d3
--- /dev/null
+++ b/site/static/logs/limited-conn/512/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:42:52 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:42:53 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x08d9d626] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:42:53 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:42:53 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:42:53 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:42:53 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:42:53 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:42:53 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x3b8de9c5] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:42:53 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x506e32f4] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:42:53 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 971 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/pipelined/4096/helidon-tuned.log b/site/static/logs/pipelined/4096/helidon-tuned.log
new file mode 100644
index 000000000..65f841857
--- /dev/null
+++ b/site/static/logs/pipelined/4096/helidon-tuned.log
@@ -0,0 +1,108 @@
+Apr 14, 2026 6:42:27 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:42:28 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x738478c2] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:42:28 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:42:28 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:42:28 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:42:28 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:42:28 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:42:28 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x20f33910] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:42:28 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x65c4e00e] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:42:28 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 37 milliseconds. 967 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:42:33 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x738478c2 0x62aec118] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/pipeline, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.PipelineHandler.handle(PipelineHandler.java:24)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:42:33 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x738478c2 0x3788c9e9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/pipeline, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Connection reset by peer
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Connection reset by peer
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.PipelineHandler.handle(PipelineHandler.java:24)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Connection reset by peer
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
diff --git a/site/static/logs/pipelined/512/helidon-tuned.log b/site/static/logs/pipelined/512/helidon-tuned.log
new file mode 100644
index 000000000..efd80ee9e
--- /dev/null
+++ b/site/static/logs/pipelined/512/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:42:03 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:42:04 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:42:04 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:42:04 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x20603378] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:42:04 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:42:04 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:42:04 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:42:04 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x28ebe43e] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:42:04 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x2352dfdb] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:42:04 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 997 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/static-h2/1024/helidon-tuned.log b/site/static/logs/static-h2/1024/helidon-tuned.log
new file mode 100644
index 000000000..8a9d2a28b
--- /dev/null
+++ b/site/static/logs/static-h2/1024/helidon-tuned.log
@@ -0,0 +1,803 @@
+Apr 14, 2026 6:51:33 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:51:33 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:51:33 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x1ed91c56] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:51:33 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:51:33 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:51:33 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:51:33 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:51:33 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x50e49e5c] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:51:33 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x76f1be53] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:51:33 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 36 milliseconds. 949 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:51:39 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x6c8e8349] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16709 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16709 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.put(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:39 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x043d160b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/analytics.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:46 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x2257ca61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (13359 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (13359 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:46 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x34c0b548] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:46 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x60073add] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:46 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x50659a2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:46 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x16472a1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x2b8a80cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (9437 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (9437 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x42aebd19] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (82 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (82 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x587e1d13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/analytics.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (3946 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (3946 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x74ed174d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x46aa39ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (11786 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (11786 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x5fbcd6af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (84 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (84 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x1932b8c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (84 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (84 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x0aa3aabb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (64 > 24)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (64 > 24)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x664c8a25] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (6191 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (6191 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x76f1be53 0x4abbb995] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
diff --git a/site/static/logs/static-h2/256/helidon-tuned.log b/site/static/logs/static-h2/256/helidon-tuned.log
new file mode 100644
index 000000000..e630f0910
--- /dev/null
+++ b/site/static/logs/static-h2/256/helidon-tuned.log
@@ -0,0 +1,1346 @@
+Apr 14, 2026 6:51:08 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:51:09 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:51:09 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:51:09 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x4c42c1ec] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:51:09 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:51:09 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:51:09 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:51:09 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7847c7d5] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:51:09 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x7249ff45] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:51:09 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 39 milliseconds. 973 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:51:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x24b549d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x165cd6ef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (11642 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (11642 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:14 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x6a4b4c5f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x26d50ecd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (84 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (84 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x2c708cb4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x33bf7ed8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x6bacc3a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition < 0: (16405 < 0)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition < 0: (16405 < 0)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x78e086db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x5cca4d8f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/theme.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (4567 > 16709)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (4567 > 16709)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x080b4f0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x23a93b15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (8239 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (8239 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:21 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x726b104b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/helpers.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x4fe2a201] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x297bf3c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x677c6098] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (2095 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (2095 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x49522d28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (13359 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (13359 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x2b8662bd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x469d2097] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (9437 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (9437 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x5e1518a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x63caa575] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (8239 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (8239 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x625a35f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x77748013] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x6f537c1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (64 > 16709)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (64 > 16709)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x274f6206] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (11642 > 16709)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (11642 > 16709)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x3f7ca2ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (84 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (84 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x689c5d85] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (16405 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (16405 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x1c2b7ca4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/manifest.json, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (83 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (83 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:93)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:147)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x1cbba2ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (1805 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (1805 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
+Apr 14, 2026 6:51:28 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x7847c7d5 0x50a6c367] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=2.0, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: newPosition > limit: (64 > 40)
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http2.Http2ServerStream.handle(Http2ServerStream.java:603)
+ at io.helidon.webserver.http2.Http2ServerStream.run(Http2ServerStream.java:318)
+ at io.helidon.webserver.http2.Http2Connection$StreamRunnable.run(Http2Connection.java:906)
+ at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
+ at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
+ at java.base/java.util.concurrent.ThreadPerTaskExecutor$ThreadBoundFuture.run(Unknown Source)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.lang.IllegalArgumentException: newPosition > limit: (64 > 40)
+ at java.base/java.nio.Buffer.createPositionException(Unknown Source)
+ at java.base/java.nio.Buffer.position(Unknown Source)
+ at java.base/java.nio.ByteBuffer.position(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:188)
+ at io.helidon.common.socket.TlsNioSocket.wrapAndSend(TlsNioSocket.java:430)
+ at io.helidon.common.socket.TlsNioSocket.doWrite(TlsNioSocket.java:389)
+ at io.helidon.common.socket.TlsNioSocket.write(TlsNioSocket.java:192)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.http.http2.Http2ConnectionWriter.noLockWrite(Http2ConnectionWriter.java:200)
+ at io.helidon.http.http2.Http2ConnectionWriter.lockedWrite(Http2ConnectionWriter.java:173)
+ at io.helidon.http.http2.Http2ConnectionWriter.splitAndWrite(Http2ConnectionWriter.java:210)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeData(Http2ConnectionWriter.java:65)
+ at io.helidon.http.http2.Http2ConnectionWriter.writeHeaders(Http2ConnectionWriter.java:148)
+ at io.helidon.webserver.http2.Http2ServerStream.writeHeadersWithData(Http2ServerStream.java:424)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:156)
+ at io.helidon.webserver.http2.Http2ServerResponse.send(Http2ServerResponse.java:99)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 9 more
+
diff --git a/site/static/logs/static/1024/helidon-tuned.log b/site/static/logs/static/1024/helidon-tuned.log
new file mode 100644
index 000000000..fe76d66e8
--- /dev/null
+++ b/site/static/logs/static/1024/helidon-tuned.log
@@ -0,0 +1,28 @@
+Apr 14, 2026 6:48:23 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:48:24 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:48:24 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:48:24 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:48:24 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:48:24 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0f7b39f2] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:48:24 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:48:24 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x69abbe85] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:48:24 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x022666a9] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:48:24 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 38 milliseconds. 961 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
diff --git a/site/static/logs/static/4096/helidon-tuned.log b/site/static/logs/static/4096/helidon-tuned.log
new file mode 100644
index 000000000..facc4bdfd
--- /dev/null
+++ b/site/static/logs/static/4096/helidon-tuned.log
@@ -0,0 +1,31788 @@
+Apr 14, 2026 6:48:47 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:48:48 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:48:48 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x2a5b91f5] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:48:48 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:48:48 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:48:48 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:48:48 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:48:48 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x2a334499] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:48:48 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x0d2f96e7] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:48:48 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 38 milliseconds. 1012 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5e9e641c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x55bef3a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3753e154] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x074bd02e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5eb327ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x46af7cb2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f38c3ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1353e66b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x63efd967] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73b04d88] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6012e4b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x79286350] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d8e2546] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3d88153d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x44797da8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x17b13480] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1d1cec00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x22596e83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f76eab9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ad6c4a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74c21e89] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x029c98ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68d8cc7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x241cdbdd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6dc8c17f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x17e749ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x33b5e98d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3e9e3e42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x023c8635] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4c9f7fda] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73951f61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7a9591d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x34e85427] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6ae26b99] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5df6108c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2c7a9ece] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x569cc8b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x44b1124d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x11315ca4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a2c0f32] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x70bdcd51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x711a872a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4e4bc437] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7b0bd093] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x009aba55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f367e48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x52b96840] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2b33c954] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x18c01eaa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x39e932df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1efb959e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x579dcbbb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x482ab8f2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1ddfd68f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x09281843] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38c194ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6150bb6b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x35401e7e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x03d9c524] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x59d4f6c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2503f948] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x50f4fe8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x65fe7e31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x25feacc1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1e34c01d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7d19bc12] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4f590ce5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4562a218] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6a5d4b69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2907a123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x29ccab8f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e4fe5da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ea76396] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x56002117] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0666b3f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x44922bd8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x069bf646] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6a394cce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5c9c63be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1511095a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x75bd561c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x09c39ae5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72a76534] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3142567d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0452ae85] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x126b8fbd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7f574ce2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3dcdfba5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x419eb372] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d718c8e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x619c2cb1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x37b089f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x71d8e115] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31562b56] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x46cfa79f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7a216631] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e33ec7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x445c9a7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2e6f7538] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x00e11840] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x02e54a1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7abca14e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4bb6c424] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e9b86ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x435cc653] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x587d29eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1a6ace54] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x628641da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5a7a1f68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2da5e5d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e59f402] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6312c3f7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x77b7e6ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x78df7f46] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2cf4bc3a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x22dea634] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68ff8fa0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ed13388] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x120b377f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4e740315] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0bc21051] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x49fa5c17] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3eafbc49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x079598d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5ba64c94] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x623e0c08] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31833271] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1e882e73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x562053a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5b4f0506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ff5161c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6efc6158] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4339858f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x23c6dda8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5d514614] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x60ad407b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x524a548b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ab25f3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2c41c6ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x04328c4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4068b92d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1cff9392] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x114482de] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3bbe560d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1a4f76a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x798b7f80] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ab4913e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4c3ae7f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x203d8672] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2a4bd007] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57cbcfd1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6b564ca7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x75258eaf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x00e76f06] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f939ada] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ff29d8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3086b2e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6de59184] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f10b179] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x65652409] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2be361e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5bd7f0ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f020b8f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27598731] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72dac2ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x19ae4c15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x62f8884b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ee0d85f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e4ae91e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x703b6aeb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x51248c6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x04318341] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2920230a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ae21031] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x18c58136] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x04b03c56] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x775bc4e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6eba4e3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7cbd7b73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x523b8385] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x02dc70d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x699b8b00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ab29984] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3813209e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1b1c186e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7f5c6de7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x608fe1a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d7bb864] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x177ed85b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x52571dd8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x62bfcb72] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3c77af98] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x52bee017] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68ba8490] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x39cef271] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x422c3909] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1c925fae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x480891be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x212d0c1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x12298b3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2718c729] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3a04780e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1c6cddea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ec80c40] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x45132681] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x42489ead] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7223b7d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x29fc71a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e3c024a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38342963] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x54896a5e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0b7fd588] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a971a50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x39f88f52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5d6a6e4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f9f9786] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21771e12] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57d5820f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x23dcfbe5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73f285eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f334078] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x62674b4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0b31ffed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7c96acd4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5909e540] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2838a00e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58321f31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0b4c745e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x24fbf8bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6cb151e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6bbca7b0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ba7af4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7dbbe738] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0bd1ccc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4b591f7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x628ca4bb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x55c267c4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x44d22662] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1be2fd8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x683beb9a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57367c03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5de06169] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7a012cc1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1987ac40] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1416fecc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x07de97dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1242f0bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7a16d93c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x71b5d969] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4f613b5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3a3641ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x06defffc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ad31f8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14c02f49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x44365403] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x26c4f4a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74c76779] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x635633ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x12719829] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1ff3bbf8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x440c1104] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x488024bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f516ae6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5de9b20e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x78219cc8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x59272fba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6ac309fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x488025a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x332d4aa4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27d6b36b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x10a44278] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4cd1b468] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4e7626f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x073924ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x29482e7a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4eb753cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x36b18e2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4f0f1546] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1dd95c17] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x65b61f43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ebddf4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x150c636a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f11242c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73785020] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0832a258] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x76e62f6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x731798df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2b7c4c55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3784957b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0da14098] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x524e564d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x69066a43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x482bf66f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x784637f7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0328d841] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7beb0b54] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x18349acb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x55edbe16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ebe3140] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6d66399b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1165f0bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x796991fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x48335101] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a495760] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d3f01c1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67863633] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x70de404f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x160c72c4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14c48907] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5d01b562] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x46c5891d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x10ec712d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x06717952] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x18d4baae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3878f768] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x54067a8e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x506ead67] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x166f7045] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x50277940] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3c75bed3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5282238d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x706093a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3acded2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1c5f0aa5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d864751] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5f0396f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4b4c24d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1badbfdb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x48752528] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4a207c0b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74c4e88f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x78c3b619] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x71e5332a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x318cfa8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0116324d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f273a95] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x23374a73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74f2b99e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1fa180d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x695f2933] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x257b603f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x601f201f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x32245509] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2029b13f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x032258ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x78681b1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3e413c48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ed07da0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x639e97e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ad114d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68f7b109] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2a5f06d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f895c10] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x345fd1cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72007088] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x556af532] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x69188283] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x65550a26] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x18fbbf22] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2686e5fd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7bcd80da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x47ae2cc8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7f718c71] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x504f8be5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31dd65ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x54562f73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2e74a963] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6bc454cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7dc184a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f5633b5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a4407eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x486802ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d9ce3d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4a54d356] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4a0be1c6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a4a6e35] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x098b6de8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x65834b33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f504674] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5ebcb8ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0de6a989] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6e161b6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6c932de3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6030d4c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x42fd69c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1a61e396] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x533547d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4de44ede] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4fbc2922] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7f40d3a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21b2d37d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x08284619] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4871ac1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d07e154] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x346c8fec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5a572ba3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e3b4448] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67d81f0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x36cff9c6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3dbb9342] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3a81b2f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x32055152] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x75a99b51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x70a24a4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x748f315e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x523e35e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7240bf77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1782ef4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x367786f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x253a0daf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x05c1b15b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14d3f76f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a730a03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4178201f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2f58eb0b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x376c0447] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x05fc8a7b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1b748bd3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x216428b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72026003] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7d24d764] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73d2d552] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x30fc6010] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x13d62660] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38b8a5a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x53e9735b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7f26370c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x236bcd53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ba60773] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72d5b729] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0de095bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x62e84da9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x69e1c84e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3137d508] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x63d3227f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x29fec1b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7991ef48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x66bf514c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4a3c6483] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x762db78f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d9459b9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x180499f5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21ee5d80] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x11a0626f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x59129242] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x50867401] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1fbaf3fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x73433c0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x25aabadb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x799ebdee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72e7d7e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5e57f5f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x777baa33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5db42f91] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x555bece4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x77b78ec9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74c13a15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x06b92e0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x39680beb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14644a90] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x48389bf5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x28405fa8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x39fb39e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57dade0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x00740bec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2b68fa57] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e3dd8d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3b77107d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x063461a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0dbc32a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x387e6569] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x64ccd760] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5073ba1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3db9b357] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1a4c9781] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x30e2ea31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5748e4cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4dd1936a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x208e6f2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5384e9b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67388bf1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x063f6a0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x520ead4c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7c962fe6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d62e74f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6a85e7d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31e40a33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38c110c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14635227] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3864b76e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x08d0464b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7612d008] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x303d7d3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6a063f0c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x55730643] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d237b3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1e11e623] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x099e5e98] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4738aa91] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4c30ef16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3479e44e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f92c84a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x572aba7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3983a9d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67b21448] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0420a099] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2b76f808] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5512aacc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4c78386d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x624c9328] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x16d286a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x07e27c81] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d203dc8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x04c53a24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x529cfc3b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ae31b3d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x685bdb8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x096eac13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38f3def0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x25d82bb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4f044005] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67181ead] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7d096e27] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1727d481] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x037e027e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x28fc7f15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d7929f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f5dbe36] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x76333f6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4898c8df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2401fa91] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x00bf86cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0a380e8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14378064] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x226dd60c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x79ebb762] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21320e7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x532d6d32] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6e9d9fcc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3e7f2daa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58eaf201] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x08239ddc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27bb5219] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3fe8a1c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x07ba7952] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6fbb6804] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f73af37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x09854cac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x610c3e88] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x28adc386] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4c0aa91a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58b5ecc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1b599868] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ffd9d15] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5fa85bd0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x70513f50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x721b4929] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4587b547] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x61060996] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3ba0f3d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x37e32476] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5b08cb02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7deca9fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x64c20bd8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7996f718] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x48f871eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6e7b2aa1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d565428] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x311ba964] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x194e4cf4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x20be12ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1241bbe1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x591e6ae9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x71d89c52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3d4a6e82] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ad2a137] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0b0952a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x457eb879] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68229087] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3b6e1a4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2148a9cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x02638ae9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x727ef1b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67b07034] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7ef4f4af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1e5bb2cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21e654dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2f962932] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5f190615] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x28ed3042] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d613e64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ca3cf50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x55503c28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1c9ab500] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1c6da6a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3cb578ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6cc537d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38213341] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2331947b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4153b828] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0b103cb7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5e9617ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d43d72e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f51a1f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:48:53 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x084c55d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x43879edd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7aed9880] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x449767cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3197ea9c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3992c647] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6dc3d187] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2caab792] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6c9fd0b9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x79472ee3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x12410166] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3fb92c96] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7fde3361] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x71d23ce5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f375a7e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x604f0a25] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2a2a2d31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3caec7e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5f1dc625] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3a923440] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6633d000] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3535b528] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7c2744fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x26ad22f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4de10b4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38e7281d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e66475c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5cf6580d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4875e95d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x670f2abd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x656b6246] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5f9474b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x05cdd769] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2e41347d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0f3b2afa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4900e009] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27156b6a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e3d64f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5a4436c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31077427] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6fa6aad6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x120a4edb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x64b652a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57a3a607] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d7ad0a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5c342bba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3a97e2c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x288be2b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x619cb472] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0442eea5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3ceb27bd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2b69708c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x51c795ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e6d4174] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58d10ca6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x152af56e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3fe75cf7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74534140] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x17deab11] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5ef12dc7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x314be566] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1315da48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x60801e84] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x06d15654] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3308c702] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6bbced79] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x21cc1911] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x504d031e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x148f1511] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x22717ae0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6a7e2c7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x23149ac2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x481970db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1498dc4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14131e50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4d57f756] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x624c04ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x74d6b3e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6cd8bca7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0d53d9cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x065a9b4a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x25e0a703] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7acc7add] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x47db1ab8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1202a21d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5cfaa4eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x76affc1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5076b01a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x044c35f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x66e8768f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0ea0d131] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x0e930dd0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x38bf3159] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7e083802] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4f3cf0bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4ba1b152] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x43e9b861] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x68648823] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27b0556e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2ce82d44] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1d9fce7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x14dde1af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x30aeb0a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7859fee8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x15933bde] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x31b2876e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x05794c73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1218714f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27b18c8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3636defc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x233ee7b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x01d289c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f3a0406] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f02fd57] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x64000cae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x79ba2039] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x40552acb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3d3c728b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x63f015a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1b130b99] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1e43304f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x095b4bb0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:00 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x30168e71] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x212fcd0b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x219a7a0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2639234a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x24cb21d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x291c3439] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58313c18] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7c2e4e4c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2d97bb2d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x59a76545] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x27a979e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x57512197] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x32de7ec3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x10138ab2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x358e284a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x61e735a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6f37d3c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x32ab8ac5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x72976db4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x675892fd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1cd04a2b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x45cac82a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f50d7ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x08cab550] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x197c71db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x09c78ddb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x034446de] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1dd1a825] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2eda46b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x569b831b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5e2e5adf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x79cb3e50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x05c06a64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2a8d85da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x752c0b39] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1b311acd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x155d470d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2df8a1bb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3ac724a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7d070544] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x24d5eb21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x76445992] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4b746237] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x64d357a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x76605177] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x22ce9894] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7d09b118] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x56baa998] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4aea18dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x037b0945] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x08249c2f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x1f42dfda] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x58065970] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x2f01da66] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6d37b9e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x352a09db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x67f77040] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5bfabc8e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4e5ff09a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x5989a400] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x6e8ca035] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x4e3d6751] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3f8454f7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3aaa7a8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3b7fd28c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x7dc0e849] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x677411fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:07 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x2a5b91f5 0x3c6fe79e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
diff --git a/site/static/logs/static/6800/helidon-tuned.log b/site/static/logs/static/6800/helidon-tuned.log
new file mode 100644
index 000000000..635bd19ad
--- /dev/null
+++ b/site/static/logs/static/6800/helidon-tuned.log
@@ -0,0 +1,98388 @@
+Apr 14, 2026 6:49:11 PM io.helidon.logging.jul.JulProvider doConfigureLogging
+INFO: Logging at runtime configured using defaults
+WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
+WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar)
+WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor
+WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release
+Apr 14, 2026 6:49:12 PM io.helidon.common.features.HelidonFeatures features
+INFO: Helidon SE 4.4.1 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer]
+Apr 14, 2026 6:49:12 PM io.helidon.common.features.HelidonFeatures features
+WARNING: You are using incubating features. These APIs are not production ready!
+Apr 14, 2026 6:49:12 PM io.helidon.common.features.HelidonFeatures lambda$features$8
+INFO: Incubating feature: JSON Binding (JSON/Binding)
+Apr 14, 2026 6:49:12 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x5efac840] http://0.0.0.0:8080 bound for socket '@default'
+Apr 14, 2026 6:49:12 PM io.helidon.common.features.HelidonFeatures features
+INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog!
+Apr 14, 2026 6:49:12 PM io.helidon.common.features.HelidonFeatures lambda$features$11
+INFO: Preview feature: GRPC (WebServer/GRPC)
+Apr 14, 2026 6:49:12 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x383b9f68] https://0.0.0.0:8081 bound for socket 'h1-tls'
+Apr 14, 2026 6:49:12 PM io.helidon.webserver.ServerListener startIt
+INFO: [0x50a065c3] https://0.0.0.0:8443 bound for socket 'h2-tls'
+Apr 14, 2026 6:49:12 PM io.helidon.webserver.LoomServer startIt
+INFO: Started all channels in 38 milliseconds. 965 milliseconds since JVM startup. Java 25.0.2+10-LTS
+Helidon HttpArena server started on ports:
+plain (8080)
+https (8443)
+h1tls (8081)
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1b3c3a32] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x591aa813] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x31dac3f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e9fffc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5412d7d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ce770cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x040d378b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49552f4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1cb63922] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46a0f0e9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x642866be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x236d9fa2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x25d0df9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2f95060c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d623a8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x571860f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7fb92639] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7785d235] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x76e54374] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0076d603] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x063ee29f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x509f3890] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6aadcc6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2ff76cb4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75d2d142] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c6758cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x361924a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7bbfaf11] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x20c34004] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4489f36e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a188b87] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ca6fcad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x07904007] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4690f74d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x27c6f149] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02f8f32e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3b0843e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b23c939] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0879cba8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x71aa9a9b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d63786f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2244ac2b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24729ee6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x757a6fcd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1450cdf1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x43763f57] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f137428] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x591a3392] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1c21c894] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1cc732b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5d3e147c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b6a22a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2d613e64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e8ee124] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x558d12f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3aa3774b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x66223574] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x205a325c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5148baa7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2221c049] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a22429e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x63694444] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55528e6d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x562ea184] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7940f865] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3701c15c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4bbadb5f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c4ae7c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6881d00b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x100474be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7dfca5e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68a862b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72a34fe8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4477a050] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6fa5e447] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ead5643] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1957779c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5da76e00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3dd5a874] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b2c24ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x43603da2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f56af69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34567fe7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77dbb6ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x001ffbdb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x709a062e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x193cc9ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68bd9c44] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3ffc7dfd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e0d0b76] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x498d3d7c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x461e5b2d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75462268] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6836398f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5044d2ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x35447c98] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4071593f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x56af52aa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x58870115] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3ce70358] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x36f9c321] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34a44a38] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72d5a5b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x504a8af3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72b7b055] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4fdc2348] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d125fd5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x378bc2a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x260b7143] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3b068574] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ec5e780] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46bef36a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x109bbfca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x10a14c4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1e2eef4c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5c322842] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4bfe4e6e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x19cf1615] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34816707] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x296be024] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a4424ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28acc18d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x277eaef0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x729f8b7a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x202800e6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6c43821c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x757fde86] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49bb3dc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1120f761] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x21ae80ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f99de24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x731eb36f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x25d90d1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x027e3619] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x21e8e2bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3499c569] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46c93f20] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bfbba8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ca9038b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x06270483] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x591aa6ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x64226869] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5516b80b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x66a36f6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0a672a25] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x57dade0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x71e898f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16dc7bac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4c5d1776] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x76605177] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x184ede54] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x20470249] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ae2fd16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x23cc7322] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x65defcf2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6b4828a2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x05362335] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1dc9ad0c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d78a777] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d0d476a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1951bd8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d1bb0bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3909aa95] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6f83f48e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x70cb6abd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3065892f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3804fb1c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x65ab2b9d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x54a66cdf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77ac75a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1cb33027] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6e0cb721] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1d187c51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x23c405fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x628d532b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x516fbe01] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x43e2c519] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d0ceee2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a6bd8e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f44027b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2cd61f5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x111b38f2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f37c0d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2213d4b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0206ab81] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68a8b9d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x364f0c47] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7660f8e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b2c39a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0eeda67c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x36c39dd5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x279bf846] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e944131] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3ca3c0dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x54f028d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x74440006] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x465d285d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x51b0eb0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6786e047] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3a7b6005] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x514da5f5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d56474b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ea396c1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6590b83d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x299c9b00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a7f208a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2fc5cb4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x10a87752] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41580af2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x64a1db6e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18bb4460] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x22c793b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5bfabc8e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0cbd7af3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77bf402a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1c0d6614] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79c58bb9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x131a77df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53c909a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x097fb191] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f1804e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77624924] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24460486] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3504b7d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3b3f012a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29cdb316] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02f08e47] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5577529c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x053dbf5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x14e92c74] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6782e1f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1475b0c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29d69f6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x69bff872] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4a6b0e77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ff4cf8a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0863a6a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x166ed919] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b41fb82] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f798f61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x132fb8cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x397d036e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6618f11e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x51564bf2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e352bf8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5877a5b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2cb44483] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67dc91cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ec9aabc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1673185d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7eb5035a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x501f3132] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7db5abf6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ebbf28d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5dce6fa1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02db074f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d2a49a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x581eb384] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x06f00391] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x726d8f53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2ec23feb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x615124c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1306460a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5dc83b8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6587ac34] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03f3e5f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f17dedd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ededc43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x33f2e1f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34f1b5a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03e7e5e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x38d2ae27] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2f1a306a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72be8fe9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67d6812a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x31ceb1fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x15ddec22] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a86c348] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1703b856] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2103298a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ed5fb60] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1dfea0be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x11d5b223] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67f53048] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x752b9daa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32a669f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x56391163] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f5f9ce2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75642861] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x421c2440] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ef20ead] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a60544e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39b8d4f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7fc42e7d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79bebfab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f1a80b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x648522ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x729365e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4c70618f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4897ea13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3535f966] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c3af245] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3362424c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53b88ddb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2be81f29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bc4d7ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a6d28a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x753e8fd6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6155f87e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x62ee8984] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x561c5d06] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72478699] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f234e59] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2dca5867] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x14857e6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6621260c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a0d2203] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x578fec49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18e6c5eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x62db29ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32162fc2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x494c24ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39bf4334] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2fdfe85f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39cbb8d5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x70d2751e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x293e0708] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a9fb2c5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d5fecf7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x536853dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5c7b7d7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24d61141] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5122a477] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x04318341] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1300112d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e97702d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f6c9556] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28d31480] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1bb83e3b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0dd740fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40e70953] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f555f42] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4f31f5df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29425917] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ed2349b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2730af9c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a1d2ba1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x47515e93] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02a59a52] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x138a7ec1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34c71e92] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x079c2ddf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0529ae09] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3090ede8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32d8c413] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4f31ccb7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x19a85210] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b737d1b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ab80b33] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x31aaedd0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ccfd9b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d8ab5d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x014a7818] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0aa3b783] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3ba248e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3b9836ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0e339d8b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6af6eaa2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x78e2c111] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x42021794] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18c44173] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03afbdd4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5f6ca44d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6ab6aada] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4c93d5f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x228eaa26] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x700e64dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2cbe0072] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7eb838f9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1c128fbc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x370f8f51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x57c5849c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d2229f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7963646e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4fa05815] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2909d017] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x07199407] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x185735ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d704853] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a6ddaf3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3a7c152b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x581152f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x47731f16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a2362be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02346dce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ea959f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d2d7e3c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3faac8ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x61949b2f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1e1f1234] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x470f52d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x419c260c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x00ad138d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7507eb0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b558c62] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72ae1c11] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x308cc215] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0cd1970f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0964f48c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6564ca31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79fba8ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d2dc597] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2dbfb39d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x23cbb206] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x024e4167] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x084866f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3ce29dd2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b4ab5ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53766392] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a63586b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x05b85def] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5526ff36] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x71ea4b55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x35b299a5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b7061db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x37d4dfe4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5768d16e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f634f8f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x225ffdfb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x739c84d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18b62a36] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e99f6a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6bd88a9e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24bf7363] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x734167cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29a3b6b0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x43d470e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x114b3f1a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x656f46f5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e039d03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2ce50527] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x034446de] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1746dc68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x604abd84] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x59039836] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6954f18f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x74c4ada0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1b5cc506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x38c194ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x50d67a2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2d7ad802] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x00e59f1b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6db5fbec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75a688f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f9af322] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x124300fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53ef2527] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x736666fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1df4d49b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5035203b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x463e2817] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x78f217e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x043fc4f5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6296db4d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7a31386d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3579941c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x10d4ad9e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x109c4fde] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x730714e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x64ecf81b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x012ade84] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x50a03b77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03c9ec50] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x623457cc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1dbb970a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3514c126] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55bef3a3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ddb9344] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x69b8ceaf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x70f64c2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x274bba49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c2ed8fd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0dffb079] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29a317b6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03d373d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x08087771] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1aaedf5c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x26a4fa3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x25d2f82d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bf3ac0c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x236ef34a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3b076304] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5dbb0669] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x304c1c18] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3288940b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4966d765] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x70fd99c5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x38a01a00] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6df8ccf9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ba60773] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7dc069d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60bfce64] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28abd4a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x48f5be9a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e8b07b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6ac309fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x19726aa3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7f0c58da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e5788a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x21fe07ea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3803d428] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d5d5123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x170c32e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d5c3965] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4245b057] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77b5fab8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7fafb608] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d7072c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5cf1c6d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ffe2177] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x437ba605] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7dbafd07] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7859fee8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41cbbf19] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5bbd7311] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7678e446] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x35d26318] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x12d28a31] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72301944] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7fba4861] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x36f187d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60a3a7f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7cc621e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e7dc428] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x51416f53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x095fabbd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x018c6da0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5aba4c91] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x61544965] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bc451b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c2d6752] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2c93a573] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3618def7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x13cee142] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x21a60394] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40b3d934] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b3beb59] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b6da838] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x11beda8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2985a805] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f282b29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2852d553] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x26eaeca3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4ff7c864] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x036a70cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e47b658] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b82e480] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6f9acbee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x280a922a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7c15998e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x030d1154] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0e9687c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7390d245] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e3a44bf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4a9d667c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5827041a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x640899cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x50d1feb0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x050bac04] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x65c540ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34c08c26] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d200eb1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x04eb59af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ebcb8ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x13c3dc13] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x247a6c3a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3626d34a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x06461230] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1e34356f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3cff1760] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x11e3a5ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x161cff3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0e6d4174] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6e7feda0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7cbd7895] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x733fdddc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ddb4754] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ec769ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55b8001e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x52c5ade2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fd515fd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0c141a3b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6fbf258a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e768a6a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x380cc81d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4be3607f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x44f7e9d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x564dd168] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x01939ae2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x598b8f71] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x36182398] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fc1b254] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3dfe9c24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75e9ddc8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x61f00788] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7349476a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x492e3def] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x362da791] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x405a36f1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d2e0ceb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5888cc34] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:17 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x26aa3c6f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d55ca88] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d3f94cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1562bbe0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x092f636e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x66f05148] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x33409f40] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x277d5783] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x38aec897] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41f91c61] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5d52fdf0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x659eaa7a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6f64b352] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41304e49] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x37d85a51] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x353987a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f5253fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6895d581] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d1833a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f009d2f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x69e0b63a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x296dd185] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e9c428e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1bed147b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79b01f1d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e6ab0d6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0cf788aa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6030d4c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32ad71a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5125d0ff] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39d71ee6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3eea361e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5097a3ad] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x063461a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5018f359] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ceb8a56] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ebe7a0f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x642fc121] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0ca174cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46ef32e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x136716eb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x090c7152] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7a0c3eb5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x22fb8ffc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x30d80406] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x457f00c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x27c5cf6a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c751296] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28d292e1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67d2a7ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5b8e0060] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79eecd83] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x228bf7b3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x06a64e12] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x555d2577] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x09ccdedb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6243f577] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4c80da87] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x01def032] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5569d0fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1d0b74e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d41efc7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68ffcc82] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x447d06dd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7a03c3c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x687f1d30] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x099b3ca7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x653ad918] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x04adc265] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4005dfb6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3737bd58] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d4714ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e5047cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18209d16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x58b73151] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6618de3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4aae2e5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79cbf4dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3dfb97dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72f8f0fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b9f84be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f726163] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x606f43d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1b1a9762] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72b5481f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67fc0fde] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bd23c09] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x76d5f64f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x681a3029] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4f3cf0bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4eac93fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5211cbf0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e9a7784] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x156c625b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2400244c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1d7d605c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x782ea452] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x164ca021] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0392b003] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x730b1aa8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x67d5bef6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55eefd54] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1902fdc1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24fd9425] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e0b9812] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x43d33875] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4c88853b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x566d648f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1cd6b3c5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55402a90] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x00db457a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e44350e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b91139a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1e06db8c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34c6de21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2dc111d1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x48f5fbdb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c5eb2c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x21d483a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x42e6d20b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3466e152] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x79ba6ff7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x009532e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b6765de] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x569113a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x20709a4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24819112] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e86eb24] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0886feda] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x31526eef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b3f86ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x78af93df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x719b9856] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53e2b27b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x27925885] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a145b9b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x010f1eef] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41e2bf10] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x401e79da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3616585c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2c65a324] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0a855f43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7e7f2b43] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b06ae60] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1882ee68] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x00f36693] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x09ba4c1e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d203121] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1250c3a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x02504b0f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0c9b149d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x771b810f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4ad16324] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b744d0c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77d6d070] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x65148c0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x71483412] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0fc6c8ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16587d9b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x63df4719] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6c859eb3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x09c2ac7f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e64c640] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60d1d1ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x37834640] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39e7afed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e5036b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55741ab6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0925f213] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x641f05f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28796cb8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x14ce6f20] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fd40147] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2d36a559] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2473b19f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x272b114f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x478a3da2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x51ef3366] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2f2ad773] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f78fb23] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f44a3d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3974f630] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x177b9b0d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x14a31dd0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x62ce3931] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7182baf9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7060cdc3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x604eedfa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6947a7d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18383853] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7c36827a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55424da7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6ca5a051] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7abfb11c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6b07a599] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x453a54c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6558904a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c8f7162] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1abaa4f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x78e3e191] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5b372130] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5b449872] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5727f5bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4df7bb69] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x736cf495] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x45b62235] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e24d030] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2fd171e2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b9a6caa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x219266c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x147335e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x75b2c951] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46e84bce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x74531403] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e88417d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x683d98d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53ccea4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5cba71ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72b4e6d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1413d109] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x057a96a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x321b40f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0acb33fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x63d824c6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29ef806f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0022cce4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40587497] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1696b96f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x73058898] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d478f9b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x406f71f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16479587] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7595a025] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1d0793ba] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1c2a9a5d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68aa36c4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03599dac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x27069f40] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6c16cbb1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ed4fba6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4fa75845] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6e0d54c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x58e1d80d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x155ad7f4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2064fc76] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39b5095b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2f4035cb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d746c01] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x54d98b70] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x19eb9303] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d067bc1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x57f80015] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x449794c8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x22794506] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d994a55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fefd55e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6cc2e5a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x381b1fa7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6f000a5c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6cc796f3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c375a3e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x48f24234] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x553ca99b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e8383ec] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24eb21d7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x699f3034] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x194c58d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x249e307d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3db0c5dc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x512d8b79] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x68b2cb6d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4223696f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0af5bfcf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2aa2fbf3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x079ea79d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1bcfe6a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5123d95a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x42b452d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b093e5c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7cbd7b73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x69183152] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1b3d74bc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a401b16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1e5799d2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x23ff722d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d54dc84] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53f1ee59] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x412f7c80] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6b203ef3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x44f18fa8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7ff13bb2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x22d5458a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4cce7695] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1c19a898] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40d6087c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1406c1da] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77cded67] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x033ad4e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16d1b3c3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a1d5d6b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x670b88ae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41d7ca21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4019b9d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a534274] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x22c2ccd2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6bc6ff4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3930980a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5111f66c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x12f87705] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2391bd4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x379fa8a1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x136bf78a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a611c47] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x684ad8c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2dd2d351] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6eb0c4cd] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7cb71e48] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x573d51fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7a6f09a4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18f38f81] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x232896d0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x025c416d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x78768e23] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3cb389aa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2ae59f20] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ee96cc6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4691c3ee] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ad9df75] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49277d11] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5743943a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1aacd742] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6bb3c323] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x12928289] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1834f475] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2bd254e0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55773ef3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x555b8a77] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3cff7908] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1b27b4cf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32b2a5be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6dc38050] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0100e39b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x45c5ff2f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4091ae3f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x252157be] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6d98c7ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6b61397a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x50422ad8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x250a291c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e047a73] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x383148e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x080ed1e5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x356378a0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b8c7409] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0cbf240e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49ff93fe] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x037b0945] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4632866d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6afb2937] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x798b7f80] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55405038] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0dc19612] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3706e9de] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7f697e9f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0717834a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7287dca7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x53b03ce4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4e9c889a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f3c74c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2eb39759] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x47663111] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x771b4885] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b67c16e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1d469442] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6861eebc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3d3fbc53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x52aad6c2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x34a67f02] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x76c6c9ca] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x240317fc] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x777d7866] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x58debaf2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x03f93751] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ab015a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x39bb1fe1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x677e82fb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x77bbc442] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x56120ad9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0448806a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x764add4b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x624aa01d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x231d67b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x191b3b03] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1a6449b2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55f85512] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x07f5a3e4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2a85878d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b41d76e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e5deaf2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fb2422c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x45dc73f0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x26225388] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49d2bb21] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x17bf710d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x59f89a39] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60231ea6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x628cc012] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x09e3e6fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x66f39a2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x509dd503] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d252801] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16bee896] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4178201f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x08c1450a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x15a6a287] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x771b3edb] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x077da0d3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x13928d6e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x14320772] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7e93f7e3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x505b62a9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1593ccb3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x59b87d37] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x572836c0] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7547cba6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2295de35] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d3970d9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5a59a8a7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5cbf909d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x19a5a65a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3c6982a8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5a38dab7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1acf06b1] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x62d0a79f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d3d9083] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x55532123] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2806953b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4675b6ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2bc16484] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x41c81672] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2cfe9a93] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x735ccafa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6a96e653] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1fdc422b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x46995276] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x269f3ed2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x33c8f79b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b00f9d4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49b21093] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2e914eea] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x58150c5c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7bc55330] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d64670e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e6571b7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3e140316] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0826c6ce] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x270c4c6c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x12dfa331] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4a73cc0e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7b88d855] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2632a519] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5931c3c9] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5fa23c5a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2dadd17a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6298a932] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60d6f140] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x01d2f86c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x099a11db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x131ba6e8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x10673ad5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6c8f5d0a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x158cf632] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x562d0b2c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d3b3f53] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x24a11290] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4ceccaa7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x040414df] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6190410b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28c72204] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0f04c732] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x665dc3fa] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7c050681] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x29716c4f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0d9be551] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x52b687d8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b63f9ed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5e75383e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0e5e60a6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ecdba6e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3f398c16] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5344532d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7c0411e7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x28595bcf] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x32772e55] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x31801882] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7a1bb97d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6b0ad2b8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x52410aac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2b8ceeb4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x16a4234a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ec9d013] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40118458] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x078872f6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x01faa2ac] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5186765c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x20b9f809] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x722e1867] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0fa022af] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x12465e4a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x49c487ab] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2d47424e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x40aa856b] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/header.html, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0bf88d57] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x44722ff6] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x50799786] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x20a54f85] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x08aa5d72] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4b469ff3] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x72e5a24e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x33d1b162] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f21de06] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x33e10a4e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1f387fd7] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x537bb356] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0c940d8d] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x04afa1f8] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x359ce4e2] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x377b6b07] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x47952a29] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x36e9879c] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x703bddd5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x2fa86750] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1cfe7288] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4d054e62] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x18d4baae] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x6ff567db] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x1ce46cc5] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0aba7054] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/components.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x60414f3a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7c6504b4] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x00a14a2e] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x3bd94704] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/regular.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x47d58d86] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/thumb1.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x0b31ffed] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/utilities.css, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x76f7bd04] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x10660683] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/vendor.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x7d45a821] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4fd6c691] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/icon-sprite.svg, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x45b14d28] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/bold.woff2, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:84)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x30f6c291] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/router.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x5ff9a52a] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/app.js, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io.IOException: Broken pipe
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:154)
+ at io.helidon.common.socket.SocketWriter.writeNow(SocketWriter.java:81)
+ at io.helidon.common.socket.SocketWriterDirect.write(SocketWriterDirect.java:43)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:216)
+ at io.helidon.webserver.http1.Http1ServerResponse.send(Http1ServerResponse.java:195)
+ at com.httparena.StaticHandler.handle(StaticHandler.java:72)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.doRoute(HttpRoutingImpl.java:174)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:132)
+ at io.helidon.webserver.http.HttpRoutingImpl$RoutingExecutor.call(HttpRoutingImpl.java:110)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:76)
+ ... 8 more
+Caused by: java.io.IOException: Broken pipe
+ at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
+ at java.base/sun.nio.ch.SocketDispatcher.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.IOUtil.write(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.implWrite(Unknown Source)
+ at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source)
+ at io.helidon.common.socket.NioSocket.write(NioSocket.java:150)
+ ... 17 more
+
+Apr 14, 2026 6:49:18 PM io.helidon.common.socket.SocketContext log
+WARNING: [0x5efac840 0x4a3d501f] Request failed: HttpPrologue[protocol=HTTP, protocolVersion=1.1, method=GET, uriPath=/static/hero.webp, query=, fragment=], cannot send error response, as response already sent
+io.helidon.http.RequestException: java.io.IOException: Broken pipe
+ at io.helidon.http.RequestException$Builder.build(RequestException.java:157)
+ at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:205)
+ at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:180)
+ at java.base/java.util.Optional.ifPresentOrElse(Unknown Source)
+ at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:179)
+ at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:113)
+ at io.helidon.webserver.http.Filters.filter(Filters.java:83)
+ at io.helidon.webserver.http.HttpRoutingImpl.route(HttpRoutingImpl.java:74)
+ at io.helidon.webserver.http1.Http1Connection.route(Http1Connection.java:552)
+ at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:218)
+ at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:185)
+ at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47)
+ at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241)
+ at java.base/java.lang.VirtualThread.run(Unknown Source)
+Caused by: java.io.UncheckedIOException: java.io